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

    Interface ExtensionResourceIdentifier

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

    interface ExtensionResourceIdentifier {
        id?: string;
        key?: string;
        typeId: "extension";
    }

    Hierarchy (View Summary)

    Index
    id?: string

    Unique identifier of the referenced Extension. Required if key is absent.

    key?: string

    User-defined unique identifier of the referenced Extension. Required if id is absent.

    typeId: "extension"

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