Interface ProductTypeAddLocalizedEnumValueAction

Adds a localizable enum to the values of AttributeLocalizedEnumType. It can update an AttributeLocalizedEnumType AttributeDefinition or an AttributeSetType of AttributeLocalizedEnumType AttributeDefinition.

interface ProductTypeAddLocalizedEnumValueAction {
    action: "addLocalizedEnumValue";
    attributeName: string;
    value: AttributeLocalizedEnumValue;
}

Properties

action: "addLocalizedEnumValue"
attributeName: string

Name of the AttributeDefinition to update.

Value to append to the array.

Generated using TypeDoc