Interface AddAttributeDefinitionChange

All Superinterfaces:
Change
All Known Implementing Classes:
AddAttributeDefinitionChangeImpl

public interface AddAttributeDefinitionChange extends Change

Change triggered by the Add Attribute Definition update action.


Example to create an instance using the builder pattern

     AddAttributeDefinitionChange addAttributeDefinitionChange = AddAttributeDefinitionChange.builder()
             .change("{change}")
             .nextValue(nextValueBuilder -> nextValueBuilder)
             .build()