Google Apps Script API
    Preparing search index...
    interface RepliesCollection {
        get(fileId: string, commentId: string, replyId: string): CommentReply;
        get(
            fileId: string,
            commentId: string,
            replyId: string,
            optionalArgs: Record<string, any>,
        ): CommentReply;
        insert(
            resource: CommentReply,
            fileId: string,
            commentId: string,
        ): CommentReply;
        list(fileId: string, commentId: string): CommentReplyList;
        list(
            fileId: string,
            commentId: string,
            optionalArgs: Record<string, any>,
        ): CommentReplyList;
        patch(
            resource: CommentReply,
            fileId: string,
            commentId: string,
            replyId: string,
        ): CommentReply;
        remove(fileId: string, commentId: string, replyId: string): void;
        update(
            resource: CommentReply,
            fileId: string,
            commentId: string,
            replyId: string,
        ): CommentReply;
    }
    Index

    Methods