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;
readonly assigneeEmailAddress?: string;
author?: User;
content?: string;
createdTime?: Date;
deleted?: boolean;
htmlContent?: string;
id?: string;
kind?: string;
readonly mentionedEmailAddresses?: string[];
modifiedTime?: Date;
}

§Properties

§
action?: string
[src]

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

§
readonly assigneeEmailAddress?: string
[src]

Output only. The email address of the user assigned to this comment. If no user is assigned, the field is unset.

§
author?: User
[src]

Output only. The author of the reply. The author's email address and permission ID won't 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 field is required by the create method if no action value 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".

§
readonly mentionedEmailAddresses?: string[]
[src]

Output only. A list of email addresses for users mentioned in this comment. If no users are mentioned, the list is empty.

§
modifiedTime?: Date
[src]

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