Change triggered by the following update actions:

- [Add LocalizableEnumValue to AttributeDefinition](ctp:api:type:ProductTypeAddLocalizedEnumValueAction) on Product Types.
- [Add LocalizedEnumValue to FieldDefinition](ctp:api:type:TypeAddLocalizedEnumValueAction) on Types.
interface AddLocalizedEnumValueChange {
    attributeName: string;
    change: string;
    fieldName: string;
    nextValue: AttributeLocalizedEnumValue;
    type: "AddLocalizedEnumValueChange";
}

Properties

attributeName: string

Name of the updated AttributeDefinition; only present on changes to Product Types.

change: string
fieldName: string

Name of the updated FieldDefinition; only present on changes to Types.

Value after the change.

type: "AddLocalizedEnumValueChange"