Show / Hide Table of Contents

Class Customer

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

Properties

AlternateEmail

The customer's secondary contact email address. This email address cannot be on the same domain as the customerDomain

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

CustomerCreationTime

System.DateTime representation of CustomerCreationTimeRaw.

Declaration
[JsonIgnore]
public virtual DateTime? CustomerCreationTime { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

CustomerCreationTimeRaw

The customer's creation time (Readonly)

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

CustomerDomain

The customer's primary domain name string. Do not include the www prefix when creating a new customer.

Declaration
[JsonProperty("customerDomain")]
public virtual string CustomerDomain { 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

Id

The unique ID for the customer's G Suite account. (Readonly)

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

Kind

Identifies the resource as a customer. Value: admin#directory#customer

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

Language

The customer's ISO 639-2 language code. See the Language Codes page for the list of supported codes. Valid language codes outside the supported set will be accepted by the API but may lead to unexpected behavior. The default value is en.

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

PhoneNumber

The customer's contact phone number in E.164 format.

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

PostalAddress

The customer's postal address information.

Declaration
[JsonProperty("postalAddress")]
public virtual CustomerPostalAddress PostalAddress { get; set; }
Property Value
Type Description
CustomerPostalAddress

Implements

IDirectResponseSchema
Back to top