[][src]Struct google_adexchangebuyer2_v2_beta1::DealTerms

pub struct DealTerms {
    pub branding_type: Option<String>,
    pub estimated_gross_spend: Option<Price>,
    pub seller_time_zone: Option<String>,
    pub estimated_impressions_per_day: Option<String>,
    pub non_guaranteed_fixed_price_terms: Option<NonGuaranteedFixedPriceTerms>,
    pub guaranteed_fixed_price_terms: Option<GuaranteedFixedPriceTerms>,
    pub non_guaranteed_auction_terms: Option<NonGuaranteedAuctionTerms>,
    pub description: Option<String>,
}

The deal terms specify the details of a Product/deal. They specify things like price per buyer, the type of pricing model (e.g., fixed price, auction) and expected impressions from the publisher.

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

Fields

branding_type: Option<String>

Visibility of the URL in bid requests. (default: BRANDED)

estimated_gross_spend: Option<Price>

Non-binding estimate of the estimated gross spend for this deal. Can be set by buyer or seller.

seller_time_zone: Option<String>

The time zone name. For deals with Cost Per Day billing, defines the time zone used to mark the boundaries of a day. It should be an IANA TZ name, such as "America/Los_Angeles". For more information, see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones.

estimated_impressions_per_day: Option<String>

Non-binding estimate of the impressions served per day. Can be set by buyer or seller.

non_guaranteed_fixed_price_terms: Option<NonGuaranteedFixedPriceTerms>

The terms for non-guaranteed fixed price deals.

guaranteed_fixed_price_terms: Option<GuaranteedFixedPriceTerms>

The terms for guaranteed fixed price deals.

non_guaranteed_auction_terms: Option<NonGuaranteedAuctionTerms>

The terms for non-guaranteed auction deals.

description: Option<String>

Publisher provided description for the terms.

Trait Implementations

impl Part for DealTerms[src]

impl Default for DealTerms[src]

impl Clone for DealTerms[src]

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

Performs copy-assignment from source. Read more

impl Debug for DealTerms[src]

impl Serialize for DealTerms[src]

impl<'de> Deserialize<'de> for DealTerms[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]