fetch-jsd
Version:
A simple and typed library, based on OpenAPI spec from developer.atlassian.com, for accessing product APIs.
71 lines (70 loc) • 2.27 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 { DateDTO, DurationDTO } from './';
/**
*
* @export
* @interface SlaInformationOngoingCycleDTO
*/
export interface SlaInformationOngoingCycleDTO {
/**
* Time and date at which the SLA cycle started.
* @type {DateDTO}
* @memberof SlaInformationOngoingCycleDTO
*/
startTime?: DateDTO;
/**
* Time and date at which the SLA cycle would have breached its limit.
* @type {DateDTO}
* @memberof SlaInformationOngoingCycleDTO
*/
breachTime?: DateDTO;
/**
* Indicates whether the SLA has been breached (true) or not (false).
* @type {boolean}
* @memberof SlaInformationOngoingCycleDTO
*/
breached?: boolean;
/**
* Indicates whether the SLA is paused (true) or not (false).
* @type {boolean}
* @memberof SlaInformationOngoingCycleDTO
*/
paused?: boolean;
/**
* Indicates whether the SLA it timed during calendared working hours only (true) or not (false).
* @type {boolean}
* @memberof SlaInformationOngoingCycleDTO
*/
withinCalendarHours?: boolean;
/**
* Duration within which the service should be completed.
* @type {DurationDTO}
* @memberof SlaInformationOngoingCycleDTO
*/
goalDuration?: DurationDTO;
/**
* Duration of the service.
* @type {DurationDTO}
* @memberof SlaInformationOngoingCycleDTO
*/
elapsedTime?: DurationDTO;
/**
* Duration remaining in which to complete the service.
* @type {DurationDTO}
* @memberof SlaInformationOngoingCycleDTO
*/
remainingTime?: DurationDTO;
}
export declare function SlaInformationOngoingCycleDTOFromJSON(json: any): SlaInformationOngoingCycleDTO;
export declare function SlaInformationOngoingCycleDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): SlaInformationOngoingCycleDTO;
export declare function SlaInformationOngoingCycleDTOToJSON(value?: SlaInformationOngoingCycleDTO): any;