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

Hierarchy

  • Record<string, unknown>
    • BlogPostCommentModel

Properties

_links?: CommentLinks
blogPostId?: string

ID of the blog post the comment is in.

body?: BodyBulk

Contains fields for each representation type requested.

id?: string

ID of the comment.

status?: ContentStatus

The status of the content.

title?: string

Title of the comment.

version?: Version