Represents a list of comments.

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

Hierarchy (View Summary)

Properties

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.