Show / Hide Table of Contents

Class ListDomainMappingsResponse

Response message for DomainMappings.ListDomainMappings.

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

Properties

DomainMappings

The domain mappings for the application.

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

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