Class GoogleCloudChannelV1FetchReportResultsResponse
Response message for CloudChannelReportsService.FetchReportResults. Contains a tabular representation of the report results.
Implements
Inherited Members
Namespace: Google.Apis.Cloudchannel.v1.Data
Assembly: Google.Apis.Cloudchannel.v1.dll
Syntax
public class GoogleCloudChannelV1FetchReportResultsResponse : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
NextPageToken
Pass this token to FetchReportResultsRequest.page_token to retrieve the next page of results.
Declaration
[JsonProperty("nextPageToken")]
public virtual string NextPageToken { get; set; }
Property Value
Type | Description |
---|---|
string |
ReportMetadata
The metadata for the report results (display name, columns, row count, and date ranges).
Declaration
[JsonProperty("reportMetadata")]
public virtual GoogleCloudChannelV1ReportResultsMetadata ReportMetadata { get; set; }
Property Value
Type | Description |
---|---|
GoogleCloudChannelV1ReportResultsMetadata |
Rows
The report's lists of values. Each row follows the settings and ordering of the columns from
report_metadata
.
Declaration
[JsonProperty("rows")]
public virtual IList<GoogleCloudChannelV1Row> Rows { get; set; }
Property Value
Type | Description |
---|---|
IList<GoogleCloudChannelV1Row> |