UNPKG

fetch-jsd

Version:

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

60 lines (59 loc) 1.57 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. */ import { StatusCategory } from './'; /** * A status. * @export * @interface StatusDetails */ export interface StatusDetails { [key: string]: object | any; /** * The URL of the status. * @type {string} * @memberof StatusDetails */ readonly self?: string; /** * The description of the status. * @type {string} * @memberof StatusDetails */ readonly description?: string; /** * The URL of the icon used to represent the status. * @type {string} * @memberof StatusDetails */ readonly iconUrl?: string; /** * The name of the status. * @type {string} * @memberof StatusDetails */ readonly name?: string; /** * The ID of the status. * @type {string} * @memberof StatusDetails */ readonly id?: string; /** * The category assigned to the status. * @type {StatusCategory} * @memberof StatusDetails */ readonly statusCategory?: StatusCategory; } export declare function StatusDetailsFromJSON(json: any): StatusDetails; export declare function StatusDetailsFromJSONTyped(json: any, ignoreDiscriminator: boolean): StatusDetails; export declare function StatusDetailsToJSON(value?: StatusDetails): any;