Returned when an AttributeDefinition does not exist for an Attribute name.

The error is returned as a failed response to the [Change AttributeDefinition Name](ctp:api:type:ProductTypeChangeAttributeNameAction) update action.
interface AttributeNameDoesNotExistError {
    code: "AttributeNameDoesNotExist";
    invalidAttributeName: string;
    message: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

code: "AttributeNameDoesNotExist"
invalidAttributeName: string

Non-existent Attribute name.

message: string

"Attribute definition for $attributeName does not exist on type $typeName."

Generated using TypeDoc