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

SimpleAddressType

import type { SimpleAddressType } from "https://googleapis.deno.dev/v1/civicinfo:v2.ts";

A simple representation of an address.

interface SimpleAddressType {
city?: string;
line1?: string;
line2?: string;
line3?: string;
locationName?: string;
state?: string;
zip?: string;
}

§Properties

§
city?: string
[src]

The city or town for the address.

§
line1?: string
[src]

The street name and number of this address.

§
line2?: string
[src]

The second line the address, if needed.

§
line3?: string
[src]

The third line of the address, if needed.

§
locationName?: string
[src]

The name of the location.

§
state?: string
[src]

The US two letter state abbreviation of the address.

§
zip?: string
[src]

The US Postal Zip Code of the address.