@esm-js/jira.js
Version:
A comprehensive JavaScript/TypeScript library designed for both Node.JS and browsers, facilitating seamless interaction with the Atlassian Jira API.
17 lines (15 loc) • 611 B
text/typescript
import type { SelfLink } from './selfLink';
import type { SlaInformationCompletedCycle } from './slaInformationCompletedCycle';
import type { SlaInformationOngoingCycle } from './slaInformationOngoingCycle';
export interface SlaInformation {
/** ID of the Service Level Agreement (SLA). */
id?: string;
/** Description of the SLA. */
name?: string;
/** List of completed cycles for the SLA. */
completedCycles?: SlaInformationCompletedCycle[];
ongoingCycle?: SlaInformationOngoingCycle;
/** Format in which SLA is to be displayed in the UI */
slaDisplayFormat?: string;
Links?: SelfLink;
}