[][src]Struct google_displayvideo1::LineItemBudget

pub struct LineItemBudget {
    pub budget_unit: Option<String>,
    pub budget_allocation_type: Option<String>,
    pub max_amount: Option<String>,
}

Settings that control how budget is allocated.

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

Fields

budget_unit: Option<String>

Output only. The budget unit specifies whether the budget is currency based or impression based. This value is inherited from the parent insertion order.

budget_allocation_type: Option<String>

Required. The type of the budget allocation.

LINE_ITEM_BUDGET_ALLOCATION_TYPE_AUTOMATIC is only applicable when automatic budget allocation is enabled for the parent insertion order.

max_amount: Option<String>

The maximum budget amount the line item will spend. Must be greater than 0.

When budget_allocation_type is:

  • LINE_ITEM_BUDGET_ALLOCATION_TYPE_AUTOMATIC, this field is immutable and is set by the system.
  • LINE_ITEM_BUDGET_ALLOCATION_TYPE_FIXED, if budget_unit is:
    • BUDGET_UNIT_CURRENCY, this field represents maximum budget amount to spend, in micros of the advertiser's currency. For example, 1500000 represents 1.5 standard units of the currency.
    • BUDGET_UNIT_IMPRESSIONS, this field represents the maximum number of impressions to serve.
  • LINE_ITEM_BUDGET_ALLOCATION_TYPE_UNLIMITED, this field is not applicable and will be ignored by the system.

Trait Implementations

impl Clone for LineItemBudget[src]

impl Debug for LineItemBudget[src]

impl Default for LineItemBudget[src]

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

impl Part for LineItemBudget[src]

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