Package com.google.cloud.channel.v1
Interface FetchReportResultsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
FetchReportResultsResponse,FetchReportResultsResponse.Builder
public interface FetchReportResultsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetNextPageToken()Pass this token to [FetchReportResultsRequest.page_token][google.cloud.channel.v1.FetchReportResultsRequest.page_token] to retrieve the next page of results.com.google.protobuf.ByteStringgetNextPageTokenBytes()Pass this token to [FetchReportResultsRequest.page_token][google.cloud.channel.v1.FetchReportResultsRequest.page_token] to retrieve the next page of results.ReportResultsMetadatagetReportMetadata()The metadata for the report results (display name, columns, row count, and date ranges).ReportResultsMetadataOrBuildergetReportMetadataOrBuilder()The metadata for the report results (display name, columns, row count, and date ranges).RowgetRows(int index)The report's lists of values.intgetRowsCount()The report's lists of values.List<Row>getRowsList()The report's lists of values.RowOrBuildergetRowsOrBuilder(int index)The report's lists of values.List<? extends RowOrBuilder>getRowsOrBuilderList()The report's lists of values.booleanhasReportMetadata()The metadata for the report results (display name, columns, row count, and date ranges).-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasReportMetadata
boolean hasReportMetadata()
The metadata for the report results (display name, columns, row count, and date ranges).
.google.cloud.channel.v1.ReportResultsMetadata report_metadata = 1;- Returns:
- Whether the reportMetadata field is set.
-
getReportMetadata
ReportResultsMetadata getReportMetadata()
The metadata for the report results (display name, columns, row count, and date ranges).
.google.cloud.channel.v1.ReportResultsMetadata report_metadata = 1;- Returns:
- The reportMetadata.
-
getReportMetadataOrBuilder
ReportResultsMetadataOrBuilder getReportMetadataOrBuilder()
The metadata for the report results (display name, columns, row count, and date ranges).
.google.cloud.channel.v1.ReportResultsMetadata report_metadata = 1;
-
getRowsList
List<Row> getRowsList()
The report's lists of values. Each row follows the settings and ordering of the columns from `report_metadata`.
repeated .google.cloud.channel.v1.Row rows = 2;
-
getRows
Row getRows(int index)
The report's lists of values. Each row follows the settings and ordering of the columns from `report_metadata`.
repeated .google.cloud.channel.v1.Row rows = 2;
-
getRowsCount
int getRowsCount()
The report's lists of values. Each row follows the settings and ordering of the columns from `report_metadata`.
repeated .google.cloud.channel.v1.Row rows = 2;
-
getRowsOrBuilderList
List<? extends RowOrBuilder> getRowsOrBuilderList()
The report's lists of values. Each row follows the settings and ordering of the columns from `report_metadata`.
repeated .google.cloud.channel.v1.Row rows = 2;
-
getRowsOrBuilder
RowOrBuilder getRowsOrBuilder(int index)
The report's lists of values. Each row follows the settings and ordering of the columns from `report_metadata`.
repeated .google.cloud.channel.v1.Row rows = 2;
-
getNextPageToken
String getNextPageToken()
Pass this token to [FetchReportResultsRequest.page_token][google.cloud.channel.v1.FetchReportResultsRequest.page_token] to retrieve the next page of results.
string next_page_token = 3;- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
Pass this token to [FetchReportResultsRequest.page_token][google.cloud.channel.v1.FetchReportResultsRequest.page_token] to retrieve the next page of results.
string next_page_token = 3;- Returns:
- The bytes for nextPageToken.
-
-