/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { WorklogAsResponse } from "../definitions/WorklogAsResponse"; export interface PageOfWorklogsAsResponse { /** * The maximum number of results that could be on the page. */ maxResults?: number; /** * The index of the first item returned on the page. */ startAt?: number; /** * The number of results on the page. */ total?: number; /** * List of worklogs. */ worklogs?: Array; [x: string]: any; } //# sourceMappingURL=PageOfWorklogsAsResponse.d.ts.map