pub struct OrderDocument {Show 17 fields
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>,
}Expand description
Contains properties of a DoubleClick 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).
- get order documents (response)
- list order documents (none)
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§
Source§impl Clone for OrderDocument
impl Clone for OrderDocument
Source§fn clone(&self) -> OrderDocument
fn clone(&self) -> OrderDocument
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for OrderDocument
impl Debug for OrderDocument
Source§impl Default for OrderDocument
impl Default for OrderDocument
Source§fn default() -> OrderDocument
fn default() -> OrderDocument
Source§impl<'de> Deserialize<'de> for OrderDocument
impl<'de> Deserialize<'de> for OrderDocument
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl Serialize for OrderDocument
impl Serialize for OrderDocument
impl Resource for OrderDocument
impl ResponseResult for OrderDocument
Auto Trait Implementations§
impl Freeze for OrderDocument
impl RefUnwindSafe for OrderDocument
impl Send for OrderDocument
impl Sync for OrderDocument
impl Unpin for OrderDocument
impl UnwindSafe for OrderDocument
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more