Show / Hide Table of Contents

Class OrderDocument

Contains properties of a Planning order document.

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

Properties

AccountId

Account ID of this order document.

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

AdvertiserId

Advertiser ID of this order document.

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

AmendedOrderDocumentId

The amended order document ID of this order document. An order document can be created by optionally amending another order document so that the change history can be preserved.

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

ApprovedByUserProfileIds

IDs of users who have approved this order document.

Declaration
[JsonProperty("approvedByUserProfileIds")]
public virtual IList<long?> ApprovedByUserProfileIds { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.Nullable<System.Int64>>

Cancelled

Whether this order document is cancelled.

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

CreatedInfo

Information about the creation of this order document.

Declaration
[JsonProperty("createdInfo")]
public virtual LastModifiedInfo CreatedInfo { get; set; }
Property Value
Type Description
LastModifiedInfo

EffectiveDate

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

Id

ID of this order document.

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

Kind

Identifies what kind of resource this is. Value: the fixed string "dfareporting#orderDocument".

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

LastSentRecipients

List of email addresses that received the last sent document.

Declaration
[JsonProperty("lastSentRecipients")]
public virtual IList<string> LastSentRecipients { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

LastSentTime

System.DateTime representation of LastSentTimeRaw.

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

LastSentTimeRaw

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

OrderId

ID of the order from which this order document is created.

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

ProjectId

Project ID of this order document.

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

Signed

Whether this order document has been signed.

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

SubaccountId

Subaccount ID of this order document.

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

Title

Title of this order document.

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

Type

Type of this order document

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

Implements

IDirectResponseSchema
In This Article
Back to top