Adds a value to a LocalizedEnumType. This update action can be used to update a LocalizedEnumType FieldDefinition and a SetType FieldDefinition of CustomFieldLocalizedEnumType.

interface TypeAddLocalizedEnumValueAction {
    action: "addLocalizedEnumValue";
    fieldName: string;
    value: CustomFieldLocalizedEnumValue;
}

Properties

action: "addLocalizedEnumValue"
fieldName: string

name of the FieldDefinition to update.

Value to append to the array.

Generated using TypeDoc