Show / Hide Table of Contents

Class EmailAddress

A person's email address.

Inheritance
System.Object
EmailAddress
Implements
Google.Apis.Requests.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.CloudSearch.v1.Data
Assembly: Google.Apis.CloudSearch.v1.dll
Syntax
public class EmailAddress : IDirectResponseSchema

Properties

CustomType

If the value of type is custom, this property contains the custom type string.

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

EmailAddressValue

The email address.

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

EmailUrl

The URL to send email.

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

ETag

The ETag of the item.

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

Primary

Indicates if this is the user's primary email. Only one entry can be marked as primary.

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

Type

The type of the email account. Acceptable values are: "custom", "home", "other", "work".

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

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top