UNPKG

fetch-jsd

Version:

A simple and typed library, based on OpenAPI spec from developer.atlassian.com, for accessing product APIs.

65 lines (64 loc) 1.92 kB
/** * Service Desk Public REST API * Public REST API for Jira Service Desk * * The version of the OpenAPI document: 1001.0.0-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { PagedLinkDTO, RequestTypeDTO } from './'; /** * * @export * @interface PagedDTORequestTypeDTO */ export interface PagedDTORequestTypeDTO { /** * Number of items returned in the page. * @type {number} * @memberof PagedDTORequestTypeDTO */ size?: number; /** * Index of the first item returned in the page. * @type {number} * @memberof PagedDTORequestTypeDTO */ start?: number; /** * Number of items to be returned per page, up to the maximum set for these objects in the current implementation. * @type {number} * @memberof PagedDTORequestTypeDTO */ limit?: number; /** * Indicates if this is the last page of records (true) or not (false). * @type {boolean} * @memberof PagedDTORequestTypeDTO */ isLastPage?: boolean; /** * Details of the items included in the page. * @type {Array<RequestTypeDTO>} * @memberof PagedDTORequestTypeDTO */ values?: Array<RequestTypeDTO>; /** * * @type {Array<string>} * @memberof PagedDTORequestTypeDTO */ _expands?: Array<string>; /** * List of the links relating to the page. * @type {PagedLinkDTO} * @memberof PagedDTORequestTypeDTO */ _links?: PagedLinkDTO; } export declare function PagedDTORequestTypeDTOFromJSON(json: any): PagedDTORequestTypeDTO; export declare function PagedDTORequestTypeDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): PagedDTORequestTypeDTO; export declare function PagedDTORequestTypeDTOToJSON(value?: PagedDTORequestTypeDTO): any;