Struct google_admin1_directory::CustomerPostalAddress[][src]

pub struct CustomerPostalAddress {
    pub organization_name: Option<String>,
    pub country_code: Option<String>,
    pub locality: Option<String>,
    pub region: Option<String>,
    pub address_line2: Option<String>,
    pub address_line3: Option<String>,
    pub contact_name: Option<String>,
    pub address_line1: Option<String>,
    pub postal_code: Option<String>,
}

JSON template for postal address of a customer.

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

Fields

The company or company division name.

This is a required property. For countryCode information see the ISO 3166 country code elements.

Name of the locality. An example of a locality value is the city of San Francisco.

Name of the region. An example of a region value is NY for the state of New York.

Address line 2 of the address.

Address line 3 of the address.

The customer contact's name.

A customer's physical address. The address can be composed of one to three lines.

The postal code. A postalCode example is a postal zip code such as 10009. This is in accordance with - http://portablecontacts.net/draft-spec.html#address_element.

Trait Implementations

impl Default for CustomerPostalAddress
[src]

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

impl Clone for CustomerPostalAddress
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CustomerPostalAddress
[src]

Formats the value using the given formatter. Read more

impl Part for CustomerPostalAddress
[src]

Auto Trait Implementations