A page of comments.

interface PageOfComments {
    comments?: Comment[];
    maxResults?: number;
    startAt?: number;
    total?: number;
}

Hierarchy

  • Record<string, unknown>
    • PageOfComments

Properties

comments?: Comment[]

The list of comments.

maxResults?: number

The maximum number of items that could be returned.

startAt?: number

The index of the first item returned.

total?: number

The number of items returned.