interface CustomContentCommentModel {
    _links?: CommentLinks;
    body?: BodySingle;
    customContentId?: string;
    id?: string;
    status?: ContentStatus;
    title?: string;
    version?: Version;
}

Hierarchy

  • Record<string, unknown>
    • CustomContentCommentModel

Properties

_links?: CommentLinks
body?: BodySingle

Contains fields for each representation type requested.

customContentId?: string

ID of the custom content containing the comment.

id?: string

ID of the comment.

status?: ContentStatus

The status of the content.

title?: string

Title of the comment.

version?: Version