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

    Methods