[][src]Struct google_adexchangebuyer1d4::MarketplaceNote

pub struct MarketplaceNote {
    pub kind: Option<String>,
    pub proposal_revision_number: Option<String>,
    pub deal_id: Option<String>,
    pub note: Option<String>,
    pub proposal_id: Option<String>,
    pub creator_role: Option<String>,
    pub note_id: Option<String>,
    pub timestamp_ms: Option<String>,
}

A proposal is associated with a bunch of notes which may optionally be associated with a deal and/or revision number.

This type is not used in any activity, and only used as part of another schema.

Fields

kind: Option<String>

Identifies what kind of resource this is. Value: the fixed string "adexchangebuyer#marketplaceNote".

proposal_revision_number: Option<String>

If the note is associated with a proposal revision number, then store that here. (readonly, except on create)

deal_id: Option<String>

Notes can optionally be associated with a deal. (readonly, except on create)

note: Option<String>

The actual note to attach. (readonly, except on create)

proposal_id: Option<String>

The proposalId that a note is attached to. (readonly)

creator_role: Option<String>

The role of the person (buyer/seller) creating the note. (readonly)

note_id: Option<String>

The unique id for the note. (readonly)

timestamp_ms: Option<String>

The timestamp (ms since epoch) that this note was created. (readonly)

Trait Implementations

impl Clone for MarketplaceNote[src]

impl Debug for MarketplaceNote[src]

impl Default for MarketplaceNote[src]

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

impl Part for MarketplaceNote[src]

impl Serialize for MarketplaceNote[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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> Typeable for T where
    T: Any