Show / Hide Table of Contents

Class SavedReports

Inheritance
System.Object
SavedReports
Implements
Google.Apis.Requests.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.AdSense.v1_4.Data
Assembly: Google.Apis.AdSense.v1_4.dll
Syntax
public class SavedReports : IDirectResponseSchema

Properties

ETag

ETag of this response for caching purposes.

Declaration
[JsonProperty("etag")]
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Items

The saved reports returned in this list response.

Declaration
[JsonProperty("items")]
public virtual IList<SavedReport> Items { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<SavedReport>

Kind

Kind of list this is, in this case adsense#savedReports.

Declaration
[JsonProperty("kind")]
public virtual string Kind { get; set; }
Property Value
Type Description
System.String

NextPageToken

Continuation token used to page through saved reports. To retrieve the next page of results, set the next request's "pageToken" value to this.

Declaration
[JsonProperty("nextPageToken")]
public virtual string NextPageToken { get; set; }
Property Value
Type Description
System.String

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top