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";
}

Hierarchy (View Summary)

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"

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