[][src]Struct google_displayvideo1::MaximizeSpendBidStrategy

pub struct MaximizeSpendBidStrategy {
    pub performance_goal_type: Option<String>,
    pub max_average_cpm_bid_amount_micros: Option<String>,
}

A strategy that automatically adjusts the bid to optimize a specified performance goal while spending the full budget.

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

Fields

performance_goal_type: Option<String>

Required. The type of the performance goal that the bidding strategy tries to minimize while spending the full budget. BIDDING_STRATEGY_PERFORMANCE_GOAL_TYPE_VIEWABLE_CPM is not supported for this strategy.

max_average_cpm_bid_amount_micros: Option<String>

The maximum average CPM that may be bid, in micros of the advertiser's currency. Must be greater than or equal to a billable unit of the given currency.

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

Trait Implementations

impl Clone for MaximizeSpendBidStrategy[src]

impl Debug for MaximizeSpendBidStrategy[src]

impl Default for MaximizeSpendBidStrategy[src]

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

impl Part for MaximizeSpendBidStrategy[src]

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