Package version:

Address details

interface Address {
    addressLine1: string;
    addressLine2?: string;
    city: string;
    country: string;
    postalCode: string;
    state: string;
}

Properties

addressLine1: string

Address line 1

addressLine2?: string

Address line 2

city: string

Name of the city

country: string

Name of the country

postalCode: string

Postal code

state: string

State (if any)