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

    Interface ProductSelectionResourceIdentifier

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

    interface ProductSelectionResourceIdentifier {
        id?: string;
        key?: string;
        typeId: "product-selection";
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    id?: string

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

    key?: string

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

    typeId: "product-selection"

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