fetch-jsd
Version:
A simple and typed library, based on OpenAPI spec from developer.atlassian.com, for accessing product APIs.
52 lines (51 loc) • 1.28 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.
*/
/**
*
* @export
* @interface PagedLinkDTO
*/
export interface PagedLinkDTO {
/**
* REST API URL for the current page.
* @type {string}
* @memberof PagedLinkDTO
*/
self?: string;
/**
* Base URL for the REST API calls.
* @type {string}
* @memberof PagedLinkDTO
*/
base?: string;
/**
*
* @type {string}
* @memberof PagedLinkDTO
*/
context?: string;
/**
* REST API URL for the next page, if there is one.
* @type {string}
* @memberof PagedLinkDTO
*/
next?: string;
/**
* REST API URL for the previous page, if there is one.
* @type {string}
* @memberof PagedLinkDTO
*/
prev?: string;
}
export declare function PagedLinkDTOFromJSON(json: any): PagedLinkDTO;
export declare function PagedLinkDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): PagedLinkDTO;
export declare function PagedLinkDTOToJSON(value?: PagedLinkDTO): any;