Show / Hide Table of Contents

Class UserEmail

JSON template for an email.

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

Properties

Address

Email id of the user.

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

CustomType

Custom Type.

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

If this is user's primary email. Only one entry could be marked as primary.

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

Type

Each entry can have a type which indicates standard types of that entry. For example email could be of home, work etc. In addition to the standard type, an entry can have a custom type and can take any value Such types should have the CUSTOM value as type and also have a customType value.

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

Implements

IDirectResponseSchema
Back to top