/** * The Jira Cloud platform REST API * Jira Cloud platform REST API documentation * * The version of the OpenAPI document: 1001.0.0-SNAPSHOT * Contact: ecosystem@atlassian.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { Worklog } from './'; /** * Paginated list of worklog details * @export * @interface PageOfWorklogs */ export interface PageOfWorklogs { [key: string]: object | any; /** * The index of the first item returned on the page. * @type {number} * @memberof PageOfWorklogs */ readonly startAt?: number; /** * The maximum number of results that could be on the page. * @type {number} * @memberof PageOfWorklogs */ readonly maxResults?: number; /** * List of worklogs. * @type {Array} * @memberof PageOfWorklogs */ readonly worklogs?: Array; /** * The number of results on the page. * @type {number} * @memberof PageOfWorklogs */ readonly total?: number; } export declare function PageOfWorklogsFromJSON(json: any): PageOfWorklogs; export declare function PageOfWorklogsFromJSONTyped(json: any, ignoreDiscriminator: boolean): PageOfWorklogs; export declare function PageOfWorklogsToJSON(value?: PageOfWorklogs): any;