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.58 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, SlaInformationCompletedCycleDTO, SlaInformationOngoingCycleDTO } from './';
/**
*
* @export
* @interface SlaInformationDTO
*/
export interface SlaInformationDTO {
/**
* ID of the Service Level Agreement (SLA).
* @type {string}
* @memberof SlaInformationDTO
*/
id?: string;
/**
* Description of the SLA.
* @type {string}
* @memberof SlaInformationDTO
*/
name?: string;
/**
* List of completed cycles for the SLA.
* @type {Array<SlaInformationCompletedCycleDTO>}
* @memberof SlaInformationDTO
*/
completedCycles?: Array<SlaInformationCompletedCycleDTO>;
/**
* Details of the active cycle for the SLA.
* @type {SlaInformationOngoingCycleDTO}
* @memberof SlaInformationDTO
*/
ongoingCycle?: SlaInformationOngoingCycleDTO;
/**
* REST API URL for the SLA.
* @type {SelfLinkDTO}
* @memberof SlaInformationDTO
*/
_links?: SelfLinkDTO;
}
export declare function SlaInformationDTOFromJSON(json: any): SlaInformationDTO;
export declare function SlaInformationDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): SlaInformationDTO;
export declare function SlaInformationDTOToJSON(value?: SlaInformationDTO): any;