@usethrottle/cart
    Preparing search index...

    Interface CartAddress

    Canonical address shape used everywhere the Cart API accepts or returns an address. Required fields (addressLine1, city, countryCode) are validated at write time — sending non-canonical keys (line1, state, country, …) is rejected with a did-you-mean hint instead of silently stored and failing later at checkout. Field names match ShippingTaxAddress.

    interface CartAddress {
        addressLine1: string;
        addressLine2?: string;
        city: string;
        company?: string;
        countryCode: string;
        email?: string;
        firstName?: string;
        lastName?: string;
        phone?: string;
        postalCode?: string;
        stateProvince?: string;
    }
    Index
    addressLine1: string
    addressLine2?: string
    city: string
    company?: string

    Business name. Optional — B2B addresses use it, B2C addresses omit it.

    countryCode: string

    ISO-3166-1 alpha-2 country code, e.g. "US".

    email?: string
    firstName?: string
    lastName?: string
    phone?: string
    postalCode?: string
    stateProvince?: string