interface ReviewsResult {
    hasMoreReviews?: boolean;
    reviews?: Review[];
    totalReviewCount?: number;
}

Properties

hasMoreReviews?: boolean

Flag indicating if there are more reviews to be shown (for paging)

reviews?: Review[]

List of reviews

totalReviewCount?: number

Count of total review items