UNPKG

fetch-jsd

Version:

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

59 lines (58 loc) 1.42 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 { SelfLinkDTO } from './'; /** * * @export * @interface QueueDTO */ export interface QueueDTO { /** * ID for the queue. * @type {string} * @memberof QueueDTO */ id?: string; /** * Short name for the queue. * @type {string} * @memberof QueueDTO */ name?: string; /** * JQL query that filters reqeusts for the queue. * @type {string} * @memberof QueueDTO */ jql?: string; /** * Fields returned for each request in the queue. * @type {Array<string>} * @memberof QueueDTO */ fields?: Array<string>; /** * The count of customer requests in the queue. * @type {number} * @memberof QueueDTO */ issueCount?: number; /** * REST API URL to the queue. * @type {SelfLinkDTO} * @memberof QueueDTO */ _links?: SelfLinkDTO; } export declare function QueueDTOFromJSON(json: any): QueueDTO; export declare function QueueDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): QueueDTO; export declare function QueueDTOToJSON(value?: QueueDTO): any;