fetch-jsd
Version:
A simple and typed library, based on OpenAPI spec from developer.atlassian.com, for accessing product APIs.
53 lines (52 loc) • 1.39 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 { SelfLinkDTO } from './';
/**
*
* @export
* @interface ServiceDeskDTO
*/
export interface ServiceDeskDTO {
/**
* ID of the service desk.
* @type {string}
* @memberof ServiceDeskDTO
*/
id?: string;
/**
* ID of the peer project for the service desk.
* @type {string}
* @memberof ServiceDeskDTO
*/
projectId?: string;
/**
* Name of the project and service desk.
* @type {string}
* @memberof ServiceDeskDTO
*/
projectName?: string;
/**
* Key of the peer project of the service desk.
* @type {string}
* @memberof ServiceDeskDTO
*/
projectKey?: string;
/**
* REST API URL to the service desk.
* @type {SelfLinkDTO}
* @memberof ServiceDeskDTO
*/
_links?: SelfLinkDTO;
}
export declare function ServiceDeskDTOFromJSON(json: any): ServiceDeskDTO;
export declare function ServiceDeskDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): ServiceDeskDTO;
export declare function ServiceDeskDTOToJSON(value?: ServiceDeskDTO): any;