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.
§
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.
§
deleted?: boolean
[src]Output only. Whether the reply has been deleted. A deleted reply has no content.
§
kind?: string
[src]Output only. Identifies what kind of resource this is. Value: the fixed
string "drive#reply".