Struct google_content2::AccountShippingPostalCodeRange
[−]
[src]
pub struct AccountShippingPostalCodeRange {
pub start: Option<String>,
pub end: Option<String>,
}A postal code range, that can be either: - A range of postal codes (e.g., start=12340, end=12359) - A range of postal codes prefixes (e.g., start=1234* end=1235*). Prefixes must be of the same length (e.g., start=12* end=2* is invalid).
This type is not used in any activity, and only used as part of another schema.
Fields
start: Option<String>
The first (inclusive) postal code or prefix of the range.
end: Option<String>
The last (inclusive) postal code or prefix of the range.
Trait Implementations
impl Debug for AccountShippingPostalCodeRange[src]
impl Clone for AccountShippingPostalCodeRange[src]
fn clone(&self) -> AccountShippingPostalCodeRange
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 AccountShippingPostalCodeRange[src]
fn default() -> AccountShippingPostalCodeRange
Returns the "default value" for a type. Read more