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

interface ShoppingListResourceIdentifier {
    id?: string;
    key?: string;
    typeId: "shopping-list";
}

Hierarchy (View Summary)

Properties

Properties

id?: string

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

key?: string

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

typeId: "shopping-list"

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