[][src]Struct google_displayvideo1::FixedBidStrategy

pub struct FixedBidStrategy {
    pub bid_amount_micros: Option<String>,
}

A strategy that uses a fixed bidding price.

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

Fields

bid_amount_micros: Option<String>

The fixed bid amount, in micros of the advertiser's currency. For insertion order entity, bid_amount_micros should be set as 0. For line item entity, bid_amount_micros must be greater than or equal to billable unit of the given currency and smaller than or equal to the upper limit 1000000000.

For example, 1500000 represents 1.5 standard units of the currency.

Trait Implementations

impl Clone for FixedBidStrategy[src]

impl Debug for FixedBidStrategy[src]

impl Default for FixedBidStrategy[src]

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

impl Part for FixedBidStrategy[src]

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