[][src]Struct google_displayvideo1::RateDetails

pub struct RateDetails {
    pub minimum_spend: Option<Money>,
    pub rate: Option<Money>,
    pub units_purchased: Option<String>,
    pub inventory_source_rate_type: Option<String>,
}

The rate related settings of the inventory source.

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

Fields

minimum_spend: Option<Money>

Output only. The amount that the buyer has committed to spending on the inventory source up front.

Only applicable for guaranteed inventory sources.

rate: Option<Money>

The rate for the inventory source.

units_purchased: Option<String>

Required for guaranteed inventory sources. The number of impressions guaranteed by the seller.

inventory_source_rate_type: Option<String>

The rate type.

Acceptable values are INVENTORY_SOURCE_RATE_TYPE_CPM_FIXED, INVENTORY_SOURCE_RATE_TYPE_CPM_FLOOR, and INVENTORY_SOURCE_RATE_TYPE_CPD.

Trait Implementations

impl Clone for RateDetails[src]

impl Debug for RateDetails[src]

impl Default for RateDetails[src]

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

impl Part for RateDetails[src]

impl Serialize for RateDetails[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