@esm-js/jira.js
Version:
A comprehensive JavaScript/TypeScript library designed for both Node.JS and browsers, facilitating seamless interaction with the Atlassian Jira API.
18 lines (16 loc) • 654 B
text/typescript
import type { PagedLink } from './pagedLink';
import type { RequestTypeGroup } from './requestTypeGroup';
export interface PagedRequestTypeGroup {
/** Number of items returned in the page. */
size?: number;
/** Index of the first item returned in the page. */
start?: number;
/** Number of items to be returned per page, up to the maximum set for these objects in the current implementation. */
limit?: number;
/** Indicates if this is the last page of records (true) or not (false). */
isLastPage?: boolean;
/** Details of the items included in the page. */
values?: RequestTypeGroup[];
Expands?: string[];
Links?: PagedLink;
}