Interface RemoveShippingAddressIdChange

All Superinterfaces:
Change
All Known Implementing Classes:
RemoveShippingAddressIdChangeImpl

public interface RemoveShippingAddressIdChange extends Change

Change triggered by the Remove Shipping Address ID update action.


Example to create an instance using the builder pattern

     RemoveShippingAddressIdChange removeShippingAddressIdChange = RemoveShippingAddressIdChange.builder()
             .change("{change}")
             .plusPreviousValue(previousValueBuilder -> previousValueBuilder)
             .plusNextValue(nextValueBuilder -> nextValueBuilder)
             .address(addressBuilder -> addressBuilder)
             .build()