Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Review

import type { Review } from "https://googleapis.deno.dev/v1/books:v1.ts";
interface Review {
author?: {
displayName?: string;
}
;
content?: string;
date?: string;
fullTextUrl?: string;
kind?: string;
rating?: string;
source?: {
description?: string;
extraDescription?: string;
url?: string;
}
;
title?: string;
type?: string;
volumeId?: string;
}

§Properties

§
author?: {
displayName?: string;
}
[src]

Author of this review.

§
content?: string
[src]

Review text.

§
date?: string
[src]

Date of this review.

§
fullTextUrl?: string
[src]

URL for the full review text, for reviews gathered from the web.

§
kind?: string
[src]

Resource type for a review.

§
rating?: string
[src]

Star rating for this review. Possible values are ONE, TWO, THREE, FOUR, FIVE or NOT_RATED.

§
source?: {
description?: string;
extraDescription?: string;
url?: string;
}
[src]

Information regarding the source of this review, when the review is not from a Google Books user.

§
title?: string
[src]

Title for this review.

§
type?: string
[src]

Source type for this review. Possible values are EDITORIAL, WEB_USER or GOOGLE_USER.

§
volumeId?: string
[src]

Volume that this review is for.