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

    Interface AttributeGroupResourceIdentifier

    ResourceIdentifier to an AttributeGroup. Either id or key is required. If both are set, an InvalidJsonInput error is returned.

    interface AttributeGroupResourceIdentifier {
        id?: string;
        key?: string;
        typeId: "attribute-group";
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    id?: string

    Platform-generated unique identifier of the referenced AttributeGroup. Required if key is absent.

    key?: string

    User-generated unique identifier of the referenced AttributeGroup. Required if id is absent.

    typeId: "attribute-group"

    Type of referenced resource. If given, it must match the expected ReferenceTypeId of the referenced resource.