Adds an Address from the addresses array to shippingAddressIds. Either addressId or addressKey is required.

interface CustomerAddShippingAddressIdAction {
    action: "addShippingAddressId";
    addressId?: string;
    addressKey?: string;
}

Properties

action: "addShippingAddressId"
addressId?: string

id of the Address to become a shipping address.

addressKey?: string

key of the Address to become a shipping address.

Generated using TypeDoc