Struct google_content2::DeliveryTime[][src]

pub struct DeliveryTime {
    pub min_handling_time_in_days: Option<u32>,
    pub cutoff_time: Option<CutoffTime>,
    pub max_transit_time_in_days: Option<u32>,
    pub min_transit_time_in_days: Option<u32>,
    pub max_handling_time_in_days: Option<u32>,
    pub holiday_cutoffs: Option<Vec<HolidayCutoff>>,
}

There is no detailed description.

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

Fields

Minimum number of business days spent before an order is shipped. 0 means same day shipped, 1 means next day shipped.

Business days cutoff time definition. If not configured the cutoff time will be defaulted to 8AM PST.

Maximum number of business days that is spent in transit. 0 means same day delivery, 1 means next day delivery. Must be greater than or equal to minTransitTimeInDays. Required.

Minimum number of business days that is spent in transit. 0 means same day delivery, 1 means next day delivery. Required.

Maximum number of business days spent before an order is shipped. 0 means same day shipped, 1 means next day shipped. Must be greater than or equal to minHandlingTimeInDays.

Holiday cutoff definitions. If configured, they specify order cutoff times for holiday-specific shipping.

Trait Implementations

impl Default for DeliveryTime
[src]

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

impl Clone for DeliveryTime
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for DeliveryTime
[src]

Formats the value using the given formatter. Read more

impl Part for DeliveryTime
[src]

Auto Trait Implementations