Google Apps Script API
    Preparing search index...

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

    interface Reply {
        action?: string;
        author?: GoogleAppsScript.Drive_v3.Drive.V3.Schema.User;
        content?: string;
        createdTime?: string;
        deleted?: boolean;
        htmlContent?: string;
        id?: string;
        kind?: string;
        modifiedTime?: string;
    }
    Index

    Properties

    action?: string

    The action the reply performed to the parent comment.Valid values are: resolvereopen

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

    content?: string

    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?: string

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

    deleted?: boolean

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

    htmlContent?: string

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

    id?: string

    Output only. The ID of the reply.

    kind?: string

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

    modifiedTime?: string

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