Struct google_content2::HolidaysHoliday[][src]

pub struct HolidaysHoliday {
    pub country_code: Option<String>,
    pub date: Option<String>,
    pub id: Option<String>,
    pub type_: Option<String>,
    pub delivery_guarantee_hour: Option<String>,
    pub delivery_guarantee_date: Option<String>,
}

There is no detailed description.

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

Fields

The CLDR territory code of the country in which the holiday is available. E.g. "US", "DE", "GB". A holiday cutoff can only be configured in a shipping settings service with matching delivery country. Always present.

Date of the holiday, in ISO 8601 format. E.g. "2016-12-25" for Christmas 2016. Always present.

Unique identifier for the holiday to be used when configuring holiday cutoffs. Always present.

The holiday type. Always present.

Hour of the day in the delivery location's timezone on the guaranteed delivery date by which the order has to arrive at the customer's. Possible values are: 0 (midnight), 1, ..., 12 (noon), 13, ..., 23. Always present.

Date on which the order has to arrive at the customer's, in ISO 8601 format. E.g. "2016-12-24" for 24th December 2016. Always present.

Trait Implementations

impl Default for HolidaysHoliday
[src]

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

impl Clone for HolidaysHoliday
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for HolidaysHoliday
[src]

Formats the value using the given formatter. Read more

impl Part for HolidaysHoliday
[src]

Auto Trait Implementations