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://aws-api.deno.dev/v0.3/services/customerprofiles.ts?docs=full";

A generic address associated with the customer that is not mailing, shipping, or billing.

interface Address {
Address1?: string | null;
Address2?: string | null;
Address3?: string | null;
Address4?: string | null;
City?: string | null;
Country?: string | null;
County?: string | null;
PostalCode?: string | null;
Province?: string | null;
State?: string | null;
}

§Properties

§
Address1?: string | null
[src]

The first line of a customer address.

§
Address2?: string | null
[src]

The second line of a customer address.

§
Address3?: string | null
[src]

The third line of a customer address.

§
Address4?: string | null
[src]

The fourth line of a customer address.

§
City?: string | null
[src]

The city in which a customer lives.

§
Country?: string | null
[src]

The country in which a customer lives.

§
County?: string | null
[src]

The county in which a customer lives.

§
PostalCode?: string | null
[src]

The postal code of a customer address.

§
Province?: string | null
[src]

The province in which a customer lives.

§
State?: string | null
[src]

The state in which a customer lives.