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
postal_code_ranges: Option<Vec<AccountShippingPostalCodeRange>>
A postal code range representing a city or a set of cities.
country: Option<String>
The CLDR territory code of the country in which this location group is.
location_ids: Option<Vec<String>>
A location ID (also called criteria ID) representing administrative areas, smaller country subdivisions (counties), or cities.
name: Option<String>
The name of the location group.
postal_codes: Option<Vec<String>>
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]
impl Clone for AccountShippingLocationGroup[src]
fn clone(&self) -> AccountShippingLocationGroup
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Default for AccountShippingLocationGroup[src]
fn default() -> AccountShippingLocationGroup
Returns the "default value" for a type. Read more