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.87 kB
TypeScript
/**
* 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 { ApprovalDTO, PagedLinkDTO } from './';
/**
*
* @export
* @interface PagedDTOApprovalDTO
*/
export interface PagedDTOApprovalDTO {
/**
* Number of items returned in the page.
* @type {number}
* @memberof PagedDTOApprovalDTO
*/
size?: number;
/**
* Index of the first item returned in the page.
* @type {number}
* @memberof PagedDTOApprovalDTO
*/
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 PagedDTOApprovalDTO
*/
limit?: number;
/**
* Indicates if this is the last page of records (true) or not (false).
* @type {boolean}
* @memberof PagedDTOApprovalDTO
*/
isLastPage?: boolean;
/**
* Details of the items included in the page.
* @type {Array<ApprovalDTO>}
* @memberof PagedDTOApprovalDTO
*/
values?: Array<ApprovalDTO>;
/**
*
* @type {Array<string>}
* @memberof PagedDTOApprovalDTO
*/
_expands?: Array<string>;
/**
* List of the links relating to the page.
* @type {PagedLinkDTO}
* @memberof PagedDTOApprovalDTO
*/
_links?: PagedLinkDTO;
}
export declare function PagedDTOApprovalDTOFromJSON(json: any): PagedDTOApprovalDTO;
export declare function PagedDTOApprovalDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): PagedDTOApprovalDTO;
export declare function PagedDTOApprovalDTOToJSON(value?: PagedDTOApprovalDTO): any;