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

interface DuplicateAttributeValuesError {
    attributes: Attribute[];
    code: "DuplicateAttributeValues";
    message: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

attributes: Attribute[]

Conflicting Attributes.

code: "DuplicateAttributeValues"
message: string

"The set of attributes must be unique across all variants."

Generated using TypeDoc