Interface TypeAddEnumValueAction

All Superinterfaces:
ResourceUpdateAction<TypeUpdateAction>, TypeUpdateAction
All Known Implementing Classes:
TypeAddEnumValueActionImpl

public interface TypeAddEnumValueAction extends TypeUpdateAction

Adds a value to an EnumType. This update action can be used to update an EnumType FieldDefinition and a SetType FieldDefinition of EnumType.


Example to create an instance using the builder pattern

     TypeAddEnumValueAction typeAddEnumValueAction = TypeAddEnumValueAction.builder()
             .fieldName("{fieldName}")
             .value(valueBuilder -> valueBuilder)
             .build()