Interface JiraWorklogUpdatedResponse

Response from GET /rest/api/latest/worklog/updated.

interface JiraWorklogUpdatedResponse {
    lastPage?: boolean;
    nextPage?: string;
    since: number;
    until: number;
    values: JiraWorklogUpdatedItem[];
}

Properties

lastPage?: boolean

Whether this is the last page

nextPage?: string

URL for the next page, when Jira has more changes

since: number

Cursor for the next poll

until: number

Last update timestamp in the current page

Changed worklog IDs