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

The first (inclusive) postal code or prefix of the range.

The last (inclusive) postal code or prefix of the range.

Trait Implementations

impl Debug for AccountShippingPostalCodeRange
[src]

Formats the value using the given formatter.

impl Clone for AccountShippingPostalCodeRange
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for AccountShippingPostalCodeRange
[src]

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

impl Part for AccountShippingPostalCodeRange
[src]