Struct google_content2::HolidayCutoff[][src]

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

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

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.

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

Unique identifier for the holiday. Required.

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 Default for HolidayCutoff
[src]

Returns the "default value" for a type. Read more

impl Clone for HolidayCutoff
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for HolidayCutoff
[src]

Formats the value using the given formatter. Read more

impl Part for HolidayCutoff
[src]

Auto Trait Implementations