body is a string containing the full text of the review.
createdAt is a number representing the timestamp when the review was created.
id is a number representing the id of the review.
media is an instance of Media representing the media being reviewed.
mediaId is a number representing the id of the media associated with the review.
mediaType is a string representing the type of media being reviewed.
private is a boolean indicating whether the review is private.
rating is a number representing the rating given in the review.
ratingAmount is a number representing the amount of ratings the review has received.
score is a number representing the score given in the review.
siteUrl is a string representing the URL of the review on the site.
summary is a string providing a brief summary of the review.
updatedAt is a number representing the timestamp when the review was last updated.
user is an instance of BasicUser representing the user who created the review.
userId is a number representing the id of the user who created the review.
ReviewResponseis an interface representing the response from a review query. It includes the id, mediaId, userId, mediaType, summary, body, rating, ratingAmount, score, private status, siteUrl, createdAt, updatedAt, user of typeBasicUser, and media of typeMedia.