[][src]Struct google_displayvideo1::InsertionOrderBudget

pub struct InsertionOrderBudget {
    pub automation_type: Option<String>,
    pub budget_unit: Option<String>,
    pub budget_segments: Option<Vec<InsertionOrderBudgetSegment>>,
}

Settings that control how insertion order budget is allocated.

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

Fields

automation_type: Option<String>

The type of automation used to manage bid and budget for the insertion order.

If this field is unspecified in creation, the value defaults to INSERTION_ORDER_AUTOMATION_TYPE_NONE.

budget_unit: Option<String>

Required. Immutable. The budget unit specifies whether the budget is currency based or impression based.

budget_segments: Option<Vec<InsertionOrderBudgetSegment>>

Required. The list of budget segments. Use a budget segment to specify a specific budget for a given period of time an insertion order is running.

Trait Implementations

impl Clone for InsertionOrderBudget[src]

impl Debug for InsertionOrderBudget[src]

impl Default for InsertionOrderBudget[src]

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

impl Part for InsertionOrderBudget[src]

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