Interface SetAddressCustomTypeChange

All Superinterfaces:
Change
All Known Implementing Classes:
SetAddressCustomTypeChangeImpl

public interface SetAddressCustomTypeChange extends Change

Change triggered by the Set Address Custom Type update action.


Example to create an instance using the builder pattern

     SetAddressCustomTypeChange setAddressCustomTypeChange = SetAddressCustomTypeChange.builder()
             .change("{change}")
             .address(addressBuilder -> addressBuilder)
             .previousValue(previousValueBuilder -> previousValueBuilder)
             .nextValue(nextValueBuilder -> nextValueBuilder)
             .build()