Show / Hide Table of Contents

Class ListPublisherAccountsResponse

Response for the publisher account list request.

Inheritance
System.Object
ListPublisherAccountsResponse
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 ListPublisherAccountsResponse : IDirectResponseSchema

Properties

Account

Publisher that the client credentials can access.

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

ETag

The ETag of the item.

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

NextPageToken

If not empty, indicates that there might be more accounts for the request; you must pass this value in a new ListPublisherAccountsRequest.

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

Implements

IDirectResponseSchema
Back to top