@gradientedge/commercetools-utils
    Preparing search index...

    Interface AttributeNameDoesNotExistError

    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;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: any
    Index

    Properties

    code: "AttributeNameDoesNotExist"

    Error identifier.

    invalidAttributeName: string

    Non-existent Attribute name.

    message: string

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