fetch-jsd
Version:
A simple and typed library, based on OpenAPI spec from developer.atlassian.com, for accessing product APIs.
30 lines (29 loc) • 914 B
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 RequestTypeIconLinkDTO
*/
export interface RequestTypeIconLinkDTO {
/**
* URLs for the request type icons.
* @type {{ [key: string]: string; }}
* @memberof RequestTypeIconLinkDTO
*/
iconUrls?: {
[key: string]: string;
};
}
export declare function RequestTypeIconLinkDTOFromJSON(json: any): RequestTypeIconLinkDTO;
export declare function RequestTypeIconLinkDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): RequestTypeIconLinkDTO;
export declare function RequestTypeIconLinkDTOToJSON(value?: RequestTypeIconLinkDTO): any;