Represents a specific version of a comment on a work item.

interface CommentVersion {
    createdBy?: IdentityRef;
    createdDate?: Date;
    id?: number;
    isDeleted?: boolean;
    modifiedBy?: IdentityRef;
    modifiedDate?: Date;
    renderedText?: string;
    state?: CommentState;
    text?: string;
    url?: string;
    version?: number;
}

Hierarchy (View Summary)

Properties

createdBy?: IdentityRef

IdentityRef of the creator of the comment.

createdDate?: Date

The creation date of the comment.

id?: number

The id assigned to the comment.

isDeleted?: boolean

Indicates if the comment has been deleted at this version.

modifiedBy?: IdentityRef

IdentityRef of the user who modified the comment at this version.

modifiedDate?: Date

The modification date of the comment for this version.

renderedText?: string

The rendered content of the comment at this version.

state?: CommentState

Indicates the current state of the comment

text?: string

The text of the comment at this version.

url?: string

REST URL for the resource.

version?: number

The version number.