Show / Hide Table of Contents

Class ListAuthorizedDomainsResponse

Response message for AuthorizedDomains.ListAuthorizedDomains.

Inheritance
System.Object
ListAuthorizedDomainsResponse
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.Appengine.v1beta.Data
Assembly: Google.Apis.Appengine.v1beta.dll
Syntax
public class ListAuthorizedDomainsResponse : IDirectResponseSchema

Properties

Domains

The authorized domains belonging to the user.

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

ETag

The ETag of the item.

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

NextPageToken

Continuation token for fetching the next page of results.

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

Implements

IDirectResponseSchema
In This Article
Back to top