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

Answer

import type { Answer } from "https://googleapis.deno.dev/v1/mybusinessqanda:v1.ts";

Represents an answer to a question

interface Answer {
readonly author?: Author;
readonly createTime?: Date;
readonly name?: string;
text?: string;
readonly updateTime?: Date;
readonly upvoteCount?: number;
}

§Properties

§
readonly author?: Author
[src]

Output only. The author of the answer. Will only be set during list operations.

§
readonly createTime?: Date
[src]

Output only. The timestamp for when the answer was written. Only retrieved during ListResponse fetching.

§
readonly name?: string
[src]

Output only. The unique name for the answer locations//questions//answers/*

§
text?: string
[src]

Required. The text of the answer. It should contain at least one non-whitespace character. The maximum length is 4096 characters.

§
readonly updateTime?: Date
[src]

Output only. The timestamp for when the answer was last modified.

§
readonly upvoteCount?: number
[src]

Output only. The number of upvotes for the answer.