Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Address

import type { Address } from "https://googleapis.deno.dev/v1/reseller:v1.ts";

JSON template for address of a customer.

interface Address {
addressLine1?: string;
addressLine2?: string;
addressLine3?: string;
contactName?: string;
countryCode?: string;
kind?: string;
locality?: string;
organizationName?: string;
postalCode?: string;
region?: string;
}

§Properties

§
addressLine1?: string
[src]

A customer's physical address. An address can be composed of one to three lines. The addressline2 and addressLine3 are optional.

§
addressLine2?: string
[src]

Line 2 of the address.

§
addressLine3?: string
[src]

Line 3 of the address.

§
contactName?: string
[src]

The customer contact's name. This is required.

§
countryCode?: string
[src]

For countryCode information, see the ISO 3166 country code elements. Verify that country is approved for resale of Google products. This property is required when creating a new customer.

§
kind?: string
[src]

Identifies the resource as a customer address. Value: customers#address

§
locality?: string
[src]

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

§
organizationName?: string
[src]

The company or company division name. This is required.

§
postalCode?: string
[src]

A postalCode example is a postal zip code such as 94043. This property is required when creating a new customer.

§
region?: string
[src]

An example of a region value is CA for the state of California.