Comment on Work Item

interface WorkItemComment {
    _links?: any;
    format?: CommentFormat;
    renderedText?: string;
    revisedBy?: IdentityReference;
    revisedDate?: Date;
    revision?: number;
    text?: string;
    url?: string;
}

Hierarchy (View Summary)

Properties

_links?: any

Link references to related REST resources.

format?: CommentFormat

Represents the possible types for the comment format.

renderedText?: string

The text of the comment in HTML format.

revisedBy?: IdentityReference

Identity of user who added the comment.

revisedDate?: Date

The date of comment.

revision?: number

The work item revision number.

text?: string

The text of the comment.

url?: string

REST URL for the resource.