Show / Hide Table of Contents

Class Domains

Inheritance
System.Object
Domains
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.Admin.Directory.directory_v1.Data
Assembly: Google.Apis.Admin.Directory.directory_v1.dll
Syntax
public class Domains : IDirectResponseSchema

Properties

CreationTime

Creation time of the domain. Expressed in Unix time format. (Read-only).

Declaration
[JsonProperty("creationTime")]
public virtual long? CreationTime { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

DomainAliases

List of domain alias objects. (Read-only)

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

DomainName

The domain name of the customer.

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

ETag

ETag of the resource.

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

IsPrimary

Indicates if the domain is a primary domain (Read-only).

Declaration
[JsonProperty("isPrimary")]
public virtual bool? IsPrimary { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Kind

Kind of resource this is.

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

Verified

Indicates the verification state of a domain. (Read-only).

Declaration
[JsonProperty("verified")]
public virtual bool? Verified { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Implements

IDirectResponseSchema
Back to top