UNPKG

fetch-jsd

Version:

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

40 lines (39 loc) 1.09 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. */ /** * * @export * @interface CustomerRequestLinkDTO */ export interface CustomerRequestLinkDTO { /** * * @type {string} * @memberof CustomerRequestLinkDTO */ self?: string; /** * REST API URL for the request. * @type {string} * @memberof CustomerRequestLinkDTO */ jiraRest?: string; /** * Web URL for the request. * @type {string} * @memberof CustomerRequestLinkDTO */ web?: string; } export declare function CustomerRequestLinkDTOFromJSON(json: any): CustomerRequestLinkDTO; export declare function CustomerRequestLinkDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomerRequestLinkDTO; export declare function CustomerRequestLinkDTOToJSON(value?: CustomerRequestLinkDTO): any;