Struct google_content2::Headers[][src]

pub struct Headers {
    pub prices: Option<Vec<Price>>,
    pub postal_code_group_names: Option<Vec<String>>,
    pub weights: Option<Vec<Weight>>,
    pub locations: Option<Vec<LocationIdSet>>,
    pub number_of_items: Option<Vec<String>>,
}

A non-empty list of row or column headers for a table. Exactly one of prices, weights, numItems, postalCodeGroupNames, or locations must be set.

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

Fields

A list of inclusive order price upper bounds. The last price's value can be "infinity". For example [{"value": "10", "currency": "USD"}, {"value": "500", "currency": "USD"}, {"value": "infinity", "currency": "USD"}] represents the headers "<= $10", " $500". All prices within a service must have the same currency. Must be non-empty. Can only be set if all other fields are not set.

A list of postal group names. The last value can be "all other locations". Example: ["zone 1", "zone 2", "all other locations"]. The referred postal code groups must match the delivery country of the service. Must be non-empty. Can only be set if all other fields are not set.

A list of inclusive order weight upper bounds. The last weight's value can be "infinity". For example [{"value": "10", "unit": "kg"}, {"value": "50", "unit": "kg"}, {"value": "infinity", "unit": "kg"}] represents the headers "<= 10kg", " 50kg". All weights within a service must have the same unit. Must be non-empty. Can only be set if all other fields are not set.

A list of location ID sets. Must be non-empty. Can only be set if all other fields are not set.

A list of inclusive number of items upper bounds. The last value can be "infinity". For example ["10", "50", "infinity"] represents the headers "<= 10 items", " 50 items". Must be non-empty. Can only be set if all other fields are not set.

Trait Implementations

impl Default for Headers
[src]

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

impl Clone for Headers
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Headers
[src]

Formats the value using the given formatter. Read more

impl Part for Headers
[src]

Auto Trait Implementations

impl Send for Headers

impl Sync for Headers