interface Comment {
    body: string;
    status: CommentStatus;
    sys: CommentSysProps;
    delete(): Promise<void>;
    toPlainObject(): CommentProps;
    update(): Promise<Comment | RichTextComment>;
}

Hierarchy (view full)

Properties

body: string
status: CommentStatus
sys: CommentSysProps

Methods