A comment on a Jira issue.

interface JiraComment {
    author?: JiraUser;
    body: string;
    created: string;
    id: string;
    renderedBody?: string;
    self: string;
    updateAuthor?: JiraUser;
    updated: string;
    visibility?: JiraCommentVisibility;
}

Properties

author?: JiraUser

User who created the comment

body: string

Comment body text

created: string

ISO 8601 date the comment was created

id: string

Numeric string ID

renderedBody?: string

Rendered HTML body (when expand=renderedBody is used)

self: string

URL of the comment resource

updateAuthor?: JiraUser

User who last updated the comment

updated: string

ISO 8601 date the comment was last updated

Visibility restriction for the comment