Interface ProductTypeChangeAttributeConstraintAction

Updates the attributeConstraint of an AttributeDefinition. For now only following changes are supported: SameForAll to None and Unique to None.

interface ProductTypeChangeAttributeConstraintAction {
    action: "changeAttributeConstraint";
    attributeName: string;
    newValue: string;
}

Properties

action: "changeAttributeConstraint"
attributeName: string

Name of the AttributeDefinition to update.

newValue: string

None

Generated using TypeDoc