Returned when the Unique AttributeConstraint criteria are not met during an Update Product request.

interface DuplicateAttributeValueError {
    attribute: Attribute;
    code: "DuplicateAttributeValue";
    message: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

attribute: Attribute

Conflicting Attributes.

code: "DuplicateAttributeValue"
message: string

"Attribute can't have the same value in a different variant."

Generated using TypeDoc