Interface MyCustomerAddShippingAddressIdAction

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

interface MyCustomerAddShippingAddressIdAction {
    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