Represents a list of work item comments.

interface CommentList {
    _links?: any;
    comments?: Comment[];
    continuationToken?: string;
    count?: number;
    nextPage?: string;
    totalCount?: number;
    url?: string;
}

Hierarchy (View Summary)

Properties

_links?: any

Link references to related REST resources.

comments?: Comment[]

List of comments in the current batch.

continuationToken?: string

A string token that can be used to retrieving next page of comments if available. Otherwise null.

count?: number

The count of comments in the current batch.

nextPage?: string

Uri to the next page of comments if it is available. Otherwise null.

totalCount?: number

Total count of comments on a work item.

url?: string

REST URL for the resource.