interface SlaInformationCompletedCycleDto {
    breached?: boolean;
    breachTime?: DateDto;
    elapsedTime?: DurationDto;
    goalDuration?: DurationDto;
    remainingTime?: DurationDto;
    startTime?: DateDto;
    stopTime?: DateDto;
}

Properties

breached?: boolean

Indicates if the SLA (duration) was exceeded (true) or not (false).

breachTime?: DateDto

Time and date at which the SLA cycle breached in case of completed breached cycle or would have breached in case of non-breached completed cycle.

elapsedTime?: DurationDto

Duration in which the service was completed.

goalDuration?: DurationDto

Duration within which the service should have been completed.

remainingTime?: DurationDto

Duration remaining after the service was completed.

startTime?: DateDto

Time and date at which the SLA cycle started.

stopTime?: DateDto

Time and date at which the SLA cycle completed.