JobStatusResponse

data class JobStatusResponse(val executionCount: Int, val failureCount: Int, val faultedCount: Int, val lastExecutionTime: String, val nextExecutionTime: String)

Constructors

Link copied to clipboard
constructor(executionCount: Int, failureCount: Int, faultedCount: Int, lastExecutionTime: String, nextExecutionTime: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Gets the number of times this job has executed.

Link copied to clipboard

Gets the number of times this job has failed.

Link copied to clipboard

Gets the number of faulted occurrences (occurrences that were retried and failed as many times as the retry policy states).

Link copied to clipboard

Gets the time the last occurrence executed in ISO-8601 format. Could be empty if job has not run yet.

Link copied to clipboard

Gets the time of the next occurrence in ISO-8601 format. Could be empty if the job is completed.