Address information for billing or delivery.

interface ShopifyAddress {
    address1?: string;
    address2?: string;
    city?: string;
    countryCode?: string;
    firstName?: string;
    lastName?: string;
    name?: string;
    phone?: string;
    postalCode?: string;
    referenceId?: string;
    zoneCode?: string;
}

Properties

address1?: string

Primary address line.

address2?: string

Secondary address line (apartment, suite, etc.).

city?: string

City name.

countryCode?: string

ISO country code (e.g., "BR", "US").

firstName?: string

First name of the recipient.

lastName?: string

Last name of the recipient.

name?: string

Full name of the recipient.

phone?: string

Phone number associated with this address.

postalCode?: string

Postal or ZIP code.

referenceId?: string

Reference ID for the address.

zoneCode?: string

State/province/region code.