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

interface CommentVersion {
    _links?: any;
    createdBy?: IdentityRef;
    createdDate?: Date;
    createdOnBehalfDate?: Date;
    createdOnBehalfOf?: IdentityRef;
    id?: number;
    isDeleted?: boolean;
    modifiedBy?: IdentityRef;
    modifiedDate?: Date;
    renderedText?: string;
    text?: string;
    url?: string;
    version?: number;
}

Hierarchy (View Summary)

Properties

_links?: any

Link references to related REST resources.

createdBy?: IdentityRef

IdentityRef of the creator of the comment.

createdDate?: Date

The creation date of the comment.

createdOnBehalfDate?: Date

Effective Date/time value for adding the comment. Can be optionally different from CreatedDate.

createdOnBehalfOf?: IdentityRef

Identity on whose behalf this comment has been added. Can be optionally different from CreatedBy.

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.

text?: string

The text of the comment at this version.

url?: string

REST URL for the resource.

version?: number

The version number.