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/adsenseplatform:v1.ts";

Address data.

interface Address {
address1?: string;
address2?: string;
city?: string;
company?: string;
contact?: string;
fax?: string;
phone?: string;
regionCode?: string;
state?: string;
zip?: string;
}

§Properties

§
address1?: string
[src]

First line of address. Max length 64 bytes or 30 characters.

§
address2?: string
[src]

Second line of address. Max length 64 bytes or 30 characters.

§
city?: string
[src]

City. Max length 60 bytes or 30 characters.

§
company?: string
[src]

Name of the company. Max length 255 bytes or 34 characters.

§
contact?: string
[src]

Contact name of the company. Max length 128 bytes or 34 characters.

§
fax?: string
[src]

Fax number with international code (i.e. +441234567890).

§
phone?: string
[src]

Phone number with international code (i.e. +441234567890).

§
regionCode?: string
[src]

Country/Region code. The region is specified as a CLDR region code (e.g. "US", "FR").

§
state?: string
[src]

State. Max length 60 bytes or 30 characters.

§
zip?: string
[src]

Zip/post code. Max length 10 bytes or 10 characters.