Change triggered by the following update actions:

- [Change the order of LocalizedEnumValues](ctp:api:type:ProductTypeChangeLocalizedEnumValueOrderAction) on Product Types.
- [Change the order of LocalizedEnumValues](ctp:api:type:TypeChangeLocalizedEnumValueOrderAction) on Types.
interface ChangeLocalizedEnumValueOrderChange {
    attributeName: string;
    change: string;
    fieldName: string;
    nextValue: LocalizedEnumValue[];
    previousValue: LocalizedEnumValue[];
    type: "ChangeLocalizedEnumValueOrderChange";
}

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.

nextValue: LocalizedEnumValue[]

Value after the change.

previousValue: LocalizedEnumValue[]

Value before the change.

type: "ChangeLocalizedEnumValueOrderChange"