Struct google_reseller1_sandbox::Address [] [src]

pub struct Address {
    pub kind: Option<String>,
    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 address of a customer.

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

Fields

Identifies the resource as a customer address.

Name of the organization.

ISO 3166 country code.

Name of the locality. This is in accordance with - http://portablecontacts.net/draft-spec.html#address_element.

Name of the region. This is in accordance with - http://portablecontacts.net/draft-spec.html#address_element.

Address line 2 of the address.

Address line 3 of the address.

Name of the contact person.

Address line 1 of the address.

The postal code. This is in accordance with - http://portablecontacts.net/draft-spec.html#address_element.

Trait Implementations

impl Debug for Address
[src]

Formats the value using the given formatter.

impl Clone for Address
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for Address
[src]

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

impl Part for Address
[src]