Interface SetAddressCustomFieldChange

All Superinterfaces:
Change
All Known Implementing Classes:
SetAddressCustomFieldChangeImpl

public interface SetAddressCustomFieldChange extends Change

Change triggered by the Set Address Custom Field update action.


Example to create an instance using the builder pattern

     SetAddressCustomFieldChange setAddressCustomFieldChange = SetAddressCustomFieldChange.builder()
             .change("{change}")
             .address(addressBuilder -> addressBuilder)
             .name("{name}")
             .customTypeId("{customTypeId}")
             .build()