Returned when during an order update of AttributeEnumType or AttributeLocalizedEnumType the new enum values do not match the existing ones.

The error is returned as a failed response to the [Change the order of EnumValues](ctp:api:type:ProductTypeChangePlainEnumValueOrderAction) and [Change the order of LocalizedEnumValues](ctp:api:type:ProductTypeChangeLocalizedEnumValueOrderAction) update actions.
interface EnumValuesMustMatchError {
    code: "EnumValuesMustMatch";
    message: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

Properties

code: "EnumValuesMustMatch"
message: string

"The given values must be equal to the existing enum values."

Generated using TypeDoc