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

    Interface RecurringOrderResourceIdentifier

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

    interface RecurringOrderResourceIdentifier {
        id?: string;
        key?: string;
        typeId: "recurring-order";
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    id?: string

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

    key?: string

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

    typeId: "recurring-order"

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