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

Reply

import type { Reply } from "https://googleapis.deno.dev/v1/drive:v3.ts";

A reply to a comment on a file. Some resource methods (such as replies.update) require a replyId. Use the replies.list method to retrieve the ID for a reply.

interface Reply {
action?: string;
author?: User;
content?: string;
createdTime?: Date;
deleted?: boolean;
htmlContent?: string;
id?: string;
kind?: string;
modifiedTime?: Date;
}

§Properties

§
action?: string
[src]

The action the reply performed to the parent comment. Valid values are: * resolve * reopen

§
author?: User
[src]

Output only. The author of the reply. The author's email address and permission ID will not be populated.

§
content?: string
[src]

The plain text content of the reply. This field is used for setting the content, while htmlContent should be displayed. This is required on creates if no action is specified.

§
createdTime?: Date
[src]

The time at which the reply was created (RFC 3339 date-time).

§
deleted?: boolean
[src]

Output only. Whether the reply has been deleted. A deleted reply has no content.

§
htmlContent?: string
[src]

Output only. The content of the reply with HTML formatting.

§
id?: string
[src]

Output only. The ID of the reply.

§
kind?: string
[src]

Output only. Identifies what kind of resource this is. Value: the fixed string "drive#reply".

§
modifiedTime?: Date
[src]

The last time the reply was modified (RFC 3339 date-time).