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

    Methods