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

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"