[][src]Struct google_content2::HolidayCutoff

pub struct HolidayCutoff {
    pub visible_from_date: Option<String>,
    pub deadline_hour: Option<u32>,
    pub deadline_date: Option<String>,
    pub holiday_id: Option<String>,
    pub deadline_timezone: Option<String>,
}

There is no detailed description.

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

Fields

visible_from_date: Option<String>

Date on which the deadline will become visible to consumers in ISO 8601 format. E.g. "2016-10-31" for 31st October 2016. Required.

deadline_hour: Option<u32>

Hour of the day on the deadline date until which the order has to be placed to qualify for the delivery guarantee. Possible values are: 0 (midnight), 1, ..., 12 (noon), 13, ..., 23. Required.

deadline_date: Option<String>

Date of the order deadline, in ISO 8601 format. E.g. "2016-11-29" for 29th November 2016. Required.

holiday_id: Option<String>

Unique identifier for the holiday. Required.

deadline_timezone: Option<String>

Timezone identifier for the deadline hour. A list of identifiers can be found in the AdWords API documentation. E.g. "Europe/Zurich". Required.

Trait Implementations

impl Clone for HolidayCutoff[src]

impl Debug for HolidayCutoff[src]

impl Default for HolidayCutoff[src]

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

impl Part for HolidayCutoff[src]

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