fetch-jsd
Version:
A simple and typed library, based on OpenAPI spec from developer.atlassian.com, for accessing product APIs.
35 lines (34 loc) • 1.04 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 { RequestTypeIconLinkDTO } from './';
/**
*
* @export
* @interface RequestTypeIconDTO
*/
export interface RequestTypeIconDTO {
/**
* ID of the request type icon.
* @type {string}
* @memberof RequestTypeIconDTO
*/
id?: string;
/**
* Map of the URLs for the request type icons.
* @type {RequestTypeIconLinkDTO}
* @memberof RequestTypeIconDTO
*/
_links?: RequestTypeIconLinkDTO;
}
export declare function RequestTypeIconDTOFromJSON(json: any): RequestTypeIconDTO;
export declare function RequestTypeIconDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): RequestTypeIconDTO;
export declare function RequestTypeIconDTOToJSON(value?: RequestTypeIconDTO): any;