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

interface InventoryEntryResourceIdentifier {
    id?: string;
    key?: string;
    typeId: "inventory-entry";
}

Properties

Properties

id?: string

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

key?: string

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

typeId: "inventory-entry"