import Message, { IMessage } from './../../message.js'; import { IDescriptorBody } from '../../descriptor.js'; export interface IGetCommentThreadMessage extends IMessage { commentThreadId: string; documentId: string; } export default class GetCommentThreadMessage extends Message { readonly commentThreadId: string; readonly documentId: string; static readonly TYPE: string; static readonly READABLE_TYPE_NAME: string; static readonly DESCRIPTOR_NAME: string; static readonly DESCRIPTOR: IDescriptorBody; constructor(commentThreadId: string, documentId: string); toJSON(): IGetCommentThreadMessage; static fromJSON(object: IGetCommentThreadMessage): GetCommentThreadMessage; }