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.4/services/privatenetworks.ts?docs=full";

Information about an address.

interface Address {
city: string;
company?: string | null;
country: string;
name: string;
phoneNumber?: string | null;
postalCode: string;
stateOrProvince: string;
street1: string;
street2?: string | null;
street3?: string | null;
}

§Properties

§
city: string
[src]

The city for this address.

§
company?: string | null
[src]

The company name for this address.

§
country: string
[src]

The country for this address.

§
name: string
[src]

The recipient's name for this address.

§
phoneNumber?: string | null
[src]

The phone number for this address.

§
postalCode: string
[src]

The postal code for this address.

§
stateOrProvince: string
[src]

The state or province for this address.

§
street1: string
[src]

The first line of the street address.

§
street2?: string | null
[src]

The second line of the street address.

§
street3?: string | null
[src]

The third line of the street address.