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

Comment

import type { Comment } from "https://googleapis.deno.dev/v1/cloudsupport:v2.ts";

A comment associated with a support case. Case comments are the primary way for Google Support to communicate with a user who has opened a case. When a user responds to Google Support, the user's responses also appear as comments.

interface Comment {
body?: string;
readonly createTime?: Date;
readonly creator?: Actor;
readonly name?: string;
readonly plainTextBody?: string;
}

§Properties

§
body?: string
[src]

The full comment body. Maximum of 12800 characters.

§
readonly createTime?: Date
[src]

Output only. The time when the comment was created.

§
readonly creator?: Actor
[src]

Output only. The user or Google Support agent who created the comment.

§
readonly name?: string
[src]

Output only. Identifier. The resource name of the comment.

§
readonly plainTextBody?: string
[src]

Output only. DEPRECATED. DO NOT USE. A duplicate of the body field. This field is only present for legacy reasons.