Struct google_adexchangebuyer1d4::MarketplaceNote [] [src]

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

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

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

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

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

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

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

The unique id for the note. (readonly)

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

Trait Implementations

impl Debug for MarketplaceNote
[src]

Formats the value using the given formatter.

impl Clone for MarketplaceNote
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for MarketplaceNote
[src]

Returns the "default value" for a type. Read more

impl Part for MarketplaceNote
[src]