Interface TypeChangeLocalizedEnumValueOrderAction

Changes the order of LocalizedEnumValues in a LocalizedEnumType FieldDefinition. This update action can be used to update a LocalizedEnumType FieldDefinition and a SetType of LocalizedEnumType FieldDefinitions.

interface TypeChangeLocalizedEnumValueOrderAction {
    action: "changeLocalizedEnumValueOrder";
    fieldName: string;
    keys: string[];
}

Properties

Properties

action: "changeLocalizedEnumValueOrder"
fieldName: string

name of the Field Definition to update.

keys: string[]

Must match the set of keys of the LocalizedEnumValues in the FieldDefinition (up to order).

Generated using TypeDoc