[][src]Struct google_displayvideo1::CampaignFlight

pub struct CampaignFlight {
    pub planned_spend_amount_micros: Option<String>,
    pub planned_dates: Option<DateRange>,
}

Settings that track the planned spend and duration of a campaign.

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

Fields

planned_spend_amount_micros: Option<String>

The amount the campaign is expected to spend for its given planned_dates. This will not limit serving, but will be used for tracking spend in the DV360 UI.

The amount is in micros. Must be greater than or equal to 0. For example, 500000000 represents 500 standard units of the currency.

planned_dates: Option<DateRange>

Required. The dates that the campaign is expected to run. They are resolved relative to the parent advertiser's time zone.

  • The dates specified here will not affect serving. They are used to generate alerts and warnings. For example, if the flight date of any child insertion order is outside the range of these dates, the user interface will show a warning.
  • start_date is required and must be the current date or later.
  • end_date is optional. If specified, it must be the start_date or later.
  • Any specified date must be before the year 2037.

Trait Implementations

impl Clone for CampaignFlight[src]

impl Debug for CampaignFlight[src]

impl Default for CampaignFlight[src]

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

impl Part for CampaignFlight[src]

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