Struct google_content2::AccountShippingLocationGroup [] [src]

pub struct AccountShippingLocationGroup {
    pub postal_code_ranges: Option<Vec<AccountShippingPostalCodeRange>>,
    pub country: Option<String>,
    pub location_ids: Option<Vec<String>>,
    pub name: Option<String>,
    pub postal_codes: Option<Vec<String>>,
}

A user-defined locations group in a given country. All the locations of the group must be of the same type.

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

Fields

A postal code range representing a city or a set of cities.

The CLDR territory code of the country in which this location group is.

A location ID (also called criteria ID) representing administrative areas, smaller country subdivisions (counties), or cities.

The name of the location group.

A postal code representing a city or a set of cities. - A single postal code (e.g., 12345) - A postal code prefix followed by a star (e.g., 1234*)

Trait Implementations

impl Debug for AccountShippingLocationGroup
[src]

Formats the value using the given formatter.

impl Clone for AccountShippingLocationGroup
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for AccountShippingLocationGroup
[src]

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

impl Part for AccountShippingLocationGroup
[src]