[][src]Struct google_dfareporting2d8::Order

pub struct Order {
    pub terms_and_conditions: Option<String>,
    pub buyer_organization_name: Option<String>,
    pub advertiser_id: Option<String>,
    pub site_id: Option<Vec<String>>,
    pub buyer_invoice_id: Option<String>,
    pub planning_term_id: Option<String>,
    pub id: Option<String>,
    pub account_id: Option<String>,
    pub kind: Option<String>,
    pub subaccount_id: Option<String>,
    pub name: Option<String>,
    pub contacts: Option<Vec<OrderContact>>,
    pub last_modified_info: Option<LastModifiedInfo>,
    pub notes: Option<String>,
    pub seller_organization_name: Option<String>,
    pub comments: Option<String>,
    pub approver_user_profile_ids: Option<Vec<String>>,
    pub seller_order_id: Option<String>,
    pub project_id: Option<String>,
    pub site_names: Option<Vec<String>>,
}

Describes properties of a Planning order.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

terms_and_conditions: Option<String>

Terms and conditions of this order.

buyer_organization_name: Option<String>

Name of the buyer organization.

advertiser_id: Option<String>

Advertiser ID of this order.

site_id: Option<Vec<String>>

Site IDs this order is associated with.

buyer_invoice_id: Option<String>

Buyer invoice ID associated with this order.

planning_term_id: Option<String>

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

id: Option<String>

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

account_id: Option<String>

Account ID of this order.

kind: Option<String>

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

subaccount_id: Option<String>

Subaccount ID of this order.

name: Option<String>

Name of this order.

contacts: Option<Vec<OrderContact>>

Contacts for this order.

last_modified_info: Option<LastModifiedInfo>

Information about the most recent modification of this order.

notes: Option<String>

Notes of this order.

seller_organization_name: Option<String>

Name of the seller organization.

comments: Option<String>

Comments in this order.

approver_user_profile_ids: Option<Vec<String>>

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

seller_order_id: Option<String>

Seller order ID associated with this order.

project_id: Option<String>

Project ID of this order.

site_names: Option<Vec<String>>

Free-form site names this order is associated with.

Trait Implementations

impl Resource for Order[src]

impl ResponseResult for Order[src]

impl Default for Order[src]

impl Clone for Order[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Order[src]

impl Serialize for Order[src]

impl<'de> Deserialize<'de> for Order[src]

Auto Trait Implementations

impl Send for Order

impl Unpin for Order

impl Sync for Order

impl UnwindSafe for Order

impl RefUnwindSafe for Order

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]