Interface CartFreezeCartAction

All Superinterfaces:
CartUpdateAction, ResourceUpdateAction<CartUpdateAction>
All Known Implementing Classes:
CartFreezeCartActionImpl

public interface CartFreezeCartAction extends CartUpdateAction

Changes the CartState from Active to Frozen. Results in a Frozen Cart. Fails with InvalidOperation error when the Cart is empty.


Example to create an instance using the builder pattern

     CartFreezeCartAction cartFreezeCartAction = CartFreezeCartAction.builder()
             .build()