Represents the reference to a specific version of a comment on a Work Item.

interface WorkItemCommentVersionRef {
    commentId?: number;
    createdInRevision?: number;
    isDeleted?: boolean;
    text?: string;
    url?: string;
    version?: number;
}

Hierarchy (View Summary)

Properties

commentId?: number

The id assigned to the comment.

createdInRevision?: number

[Internal] The work item revision where this comment was originally added.

isDeleted?: boolean

[Internal] Specifies whether comment was deleted.

text?: string

[Internal] The text of the comment.

url?: string

REST URL for the resource.

version?: number

The version number.