Adds an address to a Cart when shipping to multiple addresses is desired.

interface CartAddItemShippingAddressAction {
    action: "addItemShippingAddress";
    address: _BaseAddress;
}

Properties

Properties

action: "addItemShippingAddress"
address: _BaseAddress

Address to append to itemShippingAddresses.

The new Address must have a `key` that is unique accross this Cart.

Generated using TypeDoc