Interface CartAddItemShippingAddressAction

All Superinterfaces:
CartUpdateAction, ResourceUpdateAction<CartUpdateAction>

public interface CartAddItemShippingAddressAction extends CartUpdateAction

Adds an address to the itemShippingAddresses of a Cart. Use this action when shipping is defined per item. For example, when shipping items to multiple addresses or when using different Shipping Methods, even if all items share the same address.


Example to create an instance using the builder pattern

     CartAddItemShippingAddressAction cartAddItemShippingAddressAction = CartAddItemShippingAddressAction.builder()
             .address(addressBuilder -> addressBuilder)
             .build()