Typescript SDK Type Docs
    Preparing search index...

    Interface OrderResourceIdentifier

    Resource identifier to an Order. Either id or key is required. If both are set, an InvalidJsonInput error is returned.

    interface OrderResourceIdentifier {
        id?: string;
        key?: string;
        typeId: "order";
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    id?: string

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

    key?: string

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

    typeId: "order"

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