Show / Hide Table of Contents

Class GenerateNetworkReportResponse

The streaming response for the AdMob Network report where the first response contains the report header, then a stream of row responses, and finally a footer as the last response message. For example: [{ "header": { "dateRange": { "startDate": {"year": 2018, "month": 9, "day": 1}, "endDate": {"year": 2018, "month": 9, "day": 1} }, "localizationSettings": { "currencyCode": "USD", "languageCode": "en-US" } } }, { "row": { "dimensionValues": { "DATE": {"value": "20180918"}, "APP": { "value": "ca-app-pub-8123415297019784~1001342552", displayLabel: "My app name!" } }, "metricValues": { "ESTIMATED_EARNINGS": {"microsValue": 6500000} } } }, { "footer": {"matchingRowCount": 1} }]

Inheritance
System.Object
GenerateNetworkReportResponse
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.AdMob.v1.Data
Assembly: Google.Apis.AdMob.v1.dll
Syntax
public class GenerateNetworkReportResponse : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Footer

Additional information about the generated report, such as warnings about the data.

Declaration
[JsonProperty("footer")]
public virtual ReportFooter Footer { get; set; }
Property Value
Type Description
ReportFooter

Header

Report generation settings that describes the report contents, such as the report date range and localization settings.

Declaration
[JsonProperty("header")]
public virtual ReportHeader Header { get; set; }
Property Value
Type Description
ReportHeader

Row

Actual report data.

Declaration
[JsonProperty("row")]
public virtual ReportRow Row { get; set; }
Property Value
Type Description
ReportRow

Implements

IDirectResponseSchema
Back to top