A US domestic address, as entered as input to the API

interface DomesticAddressInput {
    city: string;
    residential?: null | boolean;
    state: StateCode;
    street: GraphqlList<string>;
    urbanization_code?: null | string;
    zip_code: string;
    [field_name: string]: undefined | JsonValue;
}

Hierarchy (View Summary)

Indexable

Properties

city: string

The city the address is in.

residential?: null | boolean

Whether the address is residential or commercial

state: StateCode

The two-letter state code

street: GraphqlList<string>

The street address. Note that most carriers will only accept the first two lines.

urbanization_code?: null | string

The urbanization code, if applicable. Only relevant for Puerto Rico addresses.

zip_code: string

The ZIP Code, as assigned by the US Postal Service