Show / Hide Table of Contents

Class SiteContact

Site Contact

Inheritance
System.Object
SiteContact
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.Dfareporting.v3_3.Data
Assembly: Google.Apis.Dfareporting.v3_3.dll
Syntax
public class SiteContact : IDirectResponseSchema

Properties

Address

Address of this site contact.

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

ContactType

Site contact type.

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

Email

Email address of this site contact. This is a required field.

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

FirstName

First name of this site contact.

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

Id

ID of this site contact. This is a read-only, auto-generated field.

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

LastName

Last name of this site contact.

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

Phone

Primary phone number of this site contact.

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

Title

Title or designation of this site contact.

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

Implements

IDirectResponseSchema
In This Article
Back to top