Adds an enum to the values of AttributeEnumType AttributeDefinition, or AttributeSetType of AttributeEnumType AttributeDefinition.

interface ProductTypeAddPlainEnumValueAction {
    action: "addPlainEnumValue";
    attributeName: string;
    value: AttributePlainEnumValue;
}

Properties

action: "addPlainEnumValue"
attributeName: string

Name of the AttributeDefinition to update.

Value to append to the array.

Generated using TypeDoc