Google Apps Script API
    Preparing search index...
    interface CommentsCollection {
        get(
            fileId: string,
            commentId: string,
        ): GoogleAppsScript.Drive.Schema.Comment;
        get(
            fileId: string,
            commentId: string,
            optionalArgs: Record<string, any>,
        ): GoogleAppsScript.Drive.Schema.Comment;
        insert(
            resource: GoogleAppsScript.Drive.Schema.Comment,
            fileId: string,
        ): GoogleAppsScript.Drive.Schema.Comment;
        list(fileId: string): GoogleAppsScript.Drive.Schema.CommentList;
        list(
            fileId: string,
            optionalArgs: Record<string, any>,
        ): GoogleAppsScript.Drive.Schema.CommentList;
        patch(
            resource: GoogleAppsScript.Drive.Schema.Comment,
            fileId: string,
            commentId: string,
        ): GoogleAppsScript.Drive.Schema.Comment;
        remove(fileId: string, commentId: string): void;
        update(
            resource: GoogleAppsScript.Drive.Schema.Comment,
            fileId: string,
            commentId: string,
        ): GoogleAppsScript.Drive.Schema.Comment;
    }
    Index

    Methods