Interface ProductTypeChangePlainEnumValueLabelAction

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

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

Properties

action: "changePlainEnumValueLabel"
attributeName: string

Name of the AttributeDefinition to update.

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

Generated using TypeDoc