[][src]Struct google_displayvideo1::BiddingStrategy

pub struct BiddingStrategy {
    pub maximize_spend_auto_bid: Option<MaximizeSpendBidStrategy>,
    pub performance_goal_auto_bid: Option<PerformanceGoalBidStrategy>,
    pub fixed_bid: Option<FixedBidStrategy>,
}

Settings that control the bid strategy. Bid strategy determines the bid price.

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

Fields

maximize_spend_auto_bid: Option<MaximizeSpendBidStrategy>

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

At insertion order level, the markup_type of line items cannot be set to PARTNER_REVENUE_MODEL_MARKUP_TYPE_CPM. In addition, when performance_goal_type is one of:

  • BIDDING_STRATEGY_PERFORMANCE_GOAL_TYPE_CPA
  • BIDDING_STRATEGY_PERFORMANCE_GOAL_TYPE_CPC
  • BIDDING_STRATEGY_PERFORMANCE_GOAL_TYPE_AV_VIEWED ,

the line_item_type of the insertion order line items must be either:

  • LINE_ITEM_TYPE_DISPLAY_DEFAULT
  • LINE_ITEM_TYPE_VIDEO_DEFAULT ,

and when performance_goal_type is either:

  • BIDDING_STRATEGY_PERFORMANCE_GOAL_TYPE_CIVA
  • BIDDING_STRATEGY_PERFORMANCE_GOAL_TYPE_IVO_TEN

the line_item_type of the insertion order line items must be LINE_ITEM_TYPE_VIDEO_DEFAULT.

performance_goal_auto_bid: Option<PerformanceGoalBidStrategy>

A strategy that automatically adjusts the bid to meet or beat a specified performance goal. It is to be used only for a line item entity.

fixed_bid: Option<FixedBidStrategy>

A strategy that uses a fixed bid price.

Trait Implementations

impl Clone for BiddingStrategy[src]

impl Debug for BiddingStrategy[src]

impl Default for BiddingStrategy[src]

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

impl Part for BiddingStrategy[src]

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