Struct google_content2_sandbox::OrderAddress [] [src]

pub struct OrderAddress {
    pub locality: Option<String>,
    pub country: Option<String>,
    pub full_address: Option<Vec<String>>,
    pub street_address: Option<Vec<String>>,
    pub postal_code: Option<String>,
    pub recipient_name: Option<String>,
    pub is_post_office_box: Option<bool>,
    pub region: Option<String>,
}

There is no detailed description.

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

Fields

City, town or commune. May also include dependent localities or sublocalities (e.g. neighborhoods or suburbs).

CLDR country code (e.g. "US").

Strings representing the lines of the printed label for mailing the order, for example: John Smith 1600 Amphitheatre Parkway Mountain View, CA, 94043 United States

Street-level part of the address.

Postal Code or ZIP (e.g. "94043").

Name of the recipient.

Whether the address is a post office box.

Top-level administrative subdivision of the country (e.g. "CA").

Trait Implementations

impl Default for OrderAddress
[src]

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

impl Clone for OrderAddress
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for OrderAddress
[src]

Formats the value using the given formatter.

impl Part for OrderAddress
[src]