Paginated list of worklog details

interface PageOfWorklogs {
    maxResults?: number;
    startAt?: number;
    total?: number;
    worklogs?: Worklog[];
}

Hierarchy

  • Record<string, unknown>
    • PageOfWorklogs

Properties

maxResults?: number

The maximum number of results that could be on the page.

startAt?: number

The index of the first item returned on the page.

total?: number

The number of results on the page.

worklogs?: Worklog[]

List of worklogs.