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

    Interface BusinessUnitResourceIdentifier

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

    interface BusinessUnitResourceIdentifier {
        id?: string;
        key?: string;
        typeId: "business-unit";
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    id?: string

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

    key?: string

    Unique key of the referenced BusinessUnit. Required if id is absent.

    typeId: "business-unit"

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