Show / Hide Table of Contents

Class Order

Describes properties of a Planning order.

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

Properties

AccountId

Account ID of this order.

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

AdvertiserId

Advertiser ID of this order.

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

ApproverUserProfileIds

IDs for users that have to approve documents created for this order.

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

BuyerInvoiceId

Buyer invoice ID associated with this order.

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

BuyerOrganizationName

Name of the buyer organization.

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

Comments

Comments in this order.

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

Contacts

Contacts for this order.

Declaration
[JsonProperty("contacts")]
public virtual IList<OrderContact> Contacts { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<OrderContact>

ETag

The ETag of the item.

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

Id

ID of this order. 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>

Kind

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

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

LastModifiedInfo

Information about the most recent modification of this order.

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

Name

Name of this order.

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

Notes

Notes of this order.

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

PlanningTermId

ID of the terms and conditions template used in this order.

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

ProjectId

Project ID of this order.

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

SellerOrderId

Seller order ID associated with this order.

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

SellerOrganizationName

Name of the seller organization.

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

SiteId

Site IDs this order is associated with.

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

SiteNames

Free-form site names this order is associated with.

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

SubaccountId

Subaccount ID of this order.

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

TermsAndConditions

Terms and conditions of this order.

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

Implements

IDirectResponseSchema
In This Article
Back to top