Show / Hide Table of Contents

Class OrderContact

Contact of an order.

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

Properties

ContactInfo

Free-form information about this contact. It could be any information related to this contact in addition to type, title, name, and signature user profile ID.

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

ContactName

Name of this contact.

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

ContactTitle

Title of this contact.

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

ContactType

Type of this contact.

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

SignatureUserProfileId

ID of the user profile containing the signature that will be embedded into order documents.

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

Implements

IDirectResponseSchema
In This Article
Back to top