interface ChildrenCommentModel {
    _links?: CommentLinks;
    body?: BodyBulk;
    id?: string;
    parentCommentId?: string;
    status?: ContentStatus;
    title?: string;
    version?: Version;
}

Hierarchy

  • Record<string, unknown>
    • ChildrenCommentModel

Properties

_links?: CommentLinks
body?: BodyBulk

Contains fields for each representation type requested.

id?: string

ID of the comment.

parentCommentId?: string

ID of the parent comment the child comment is in.

status?: ContentStatus

The status of the content.

title?: string

Title of the comment.

version?: Version