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

interface StoreResourceIdentifier {
    id?: string;
    key?: string;
    typeId: "store";
}

Properties

Properties

id?: string

Unique ID of the referenced Store. Required if key is absent.

key?: string

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

typeId: "store"