Show / Hide Table of Contents

Class GenerateMediationReportResponse

The streaming response for the AdMob Mediation 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": { "date_range": { "start_date": {"year": 2018, "month": 9, "day": 1}, "end_date": {"year": 2018, "month": 9, "day": 1} }, "localization_settings": { "currency_code": "USD", "language_code": "en-US" } } }, { "row": { "dimension_values": { "DATE": {"value": "20180918"}, "APP": { "value": "ca-app-pub-8123415297019784~1001342552", "display_label": "My app name!" } }, "metric_values": { "ESTIMATED_EARNINGS": {"decimal_value": "1324746"} } } }, { "footer": {"matching_row_count": 1} }]

Inheritance
object
GenerateMediationReportResponse
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.AdMob.v1beta.Data
Assembly: Google.Apis.AdMob.v1beta.dll
Syntax
public class GenerateMediationReportResponse : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
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
In this article
Back to top Generated by DocFX