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

interface ReviewResourceIdentifier {
    id?: string;
    key?: string;
    typeId: "review";
}

Hierarchy (View Summary)

Properties

Properties

id?: string

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

key?: string

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

typeId: "review"

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