Details of the active cycle for the SLA.

interface SlaInformationOngoingCycleDto {
    breached?: boolean;
    breachTime?: DateDto;
    elapsedTime?: DurationDto;
    goalDuration?: DurationDto;
    paused?: boolean;
    remainingTime?: DurationDto;
    startTime?: DateDto;
    withinCalendarHours?: boolean;
}

Properties

breached?: boolean

Indicates whether the SLA has been breached (true) or not (false).

breachTime?: DateDto

Time and date at which the SLA cycle would have breached its limit.

elapsedTime?: DurationDto

Duration of the service.

goalDuration?: DurationDto

Duration within which the service should be completed.

paused?: boolean

Indicates whether the SLA is paused (true) or not (false).

remainingTime?: DurationDto

Duration remaining in which to complete the service.

startTime?: DateDto

Time and date at which the SLA cycle started.

withinCalendarHours?: boolean

Indicates whether the SLA it timed during calendared working hours only (true) or not (false).