ServiceJobStatus

@Serializable
data class ServiceJobStatus(val jobIteration: ObjectVersion? = null, val lastExecution: String? = null)

The status of the service when it is in one of ReplicatedJob or GlobalJob modes. Absent on Replicated and Global mode services. The JobIteration is an ObjectVersion, but unlike the Service's version, does not need to be sent with an update request.

Parameters

jobIteration
lastExecution

The last time, as observed by the server, that this job was started.

Constructors

Link copied to clipboard
constructor(jobIteration: ObjectVersion? = null, lastExecution: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "JobIteration")
val jobIteration: ObjectVersion?
Link copied to clipboard
@SerialName(value = "LastExecution")
val lastExecution: String?