interface BlogPostInlineCommentModel {
    _links?: CommentLinks;
    blogPostId?: string;
    body?: BodyBulk;
    id?: string;
    properties?: InlineCommentProperties;
    resolutionStatus?: InlineCommentResolutionStatus;
    status?: ContentStatus;
    title?: string;
    version?: Version;
}

Hierarchy

  • Record<string, unknown>
    • BlogPostInlineCommentModel

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.

Inline comment resolution status

status?: ContentStatus

The status of the content.

title?: string

Title of the comment.

version?: Version