[][src]Struct google_dfareporting3d2::OrderDocument

pub struct OrderDocument {
    pub order_id: Option<String>,
    pub last_sent_time: Option<String>,
    pub amended_order_document_id: Option<String>,
    pub last_sent_recipients: Option<Vec<String>>,
    pub approved_by_user_profile_ids: Option<Vec<String>>,
    pub id: Option<String>,
    pub account_id: Option<String>,
    pub advertiser_id: Option<String>,
    pub kind: Option<String>,
    pub subaccount_id: Option<String>,
    pub effective_date: Option<String>,
    pub title: Option<String>,
    pub project_id: Option<String>,
    pub signed: Option<bool>,
    pub created_info: Option<LastModifiedInfo>,
    pub cancelled: Option<bool>,
    pub type_: Option<String>,
}

Contains properties of a Planning order document.

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

order_id: Option<String>

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

last_sent_time: Option<String>

Timestamp of the last email sent with this order document.

amended_order_document_id: Option<String>

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.

last_sent_recipients: Option<Vec<String>>

List of email addresses that received the last sent document.

approved_by_user_profile_ids: Option<Vec<String>>

IDs of users who have approved this order document.

id: Option<String>

ID of this order document.

account_id: Option<String>

Account ID of this order document.

advertiser_id: Option<String>

Advertiser ID of this order document.

kind: Option<String>

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

subaccount_id: Option<String>

Subaccount ID of this order document.

effective_date: Option<String>

Effective date of this order document.

title: Option<String>

Title of this order document.

project_id: Option<String>

Project ID of this order document.

signed: Option<bool>

Whether this order document has been signed.

created_info: Option<LastModifiedInfo>

Information about the creation of this order document.

cancelled: Option<bool>

Whether this order document is cancelled.

type_: Option<String>

Type of this order document

Trait Implementations

impl Resource for OrderDocument[src]

impl ResponseResult for OrderDocument[src]

impl Default for OrderDocument[src]

impl Clone for OrderDocument[src]

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

Performs copy-assignment from source. Read more

impl Debug for OrderDocument[src]

impl Serialize for OrderDocument[src]

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

Auto Trait Implementations

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]