Interface ProductTypeChangeLocalizedEnumValueLabelAction

Updates the label of a single enum value in an AttributeLocalizedEnumType AttributeDefinition, or AttributeSetType of AttributeLocalizedEnumType AttributeDefinition.

All Products will be updated to the new label in an [eventually consistent](/general-concepts#eventual-consistency) way.
interface ProductTypeChangeLocalizedEnumValueLabelAction {
    action: "changeLocalizedEnumValueLabel";
    attributeName: string;
    newValue: AttributeLocalizedEnumValue;
}

Properties

action: "changeLocalizedEnumValueLabel"
attributeName: string

Name of the AttributeDefinition to update.

New value to set. Must be different from the existing value.

Generated using TypeDoc