ServiceUpdateStatus

@Serializable
data class ServiceUpdateStatus(val state: ServiceUpdateStatus.State? = null, val startedAt: String? = null, val completedAt: String? = null, val message: String? = null)

The status of a service update.

Parameters

state
startedAt
completedAt
message

Constructors

Link copied to clipboard
constructor(state: ServiceUpdateStatus.State? = null, startedAt: String? = null, completedAt: String? = null, message: String? = null)

Types

Link copied to clipboard
@Serializable
enum State : Enum<ServiceUpdateStatus.State>

Values: UPDATING,PAUSED,COMPLETED

Properties

Link copied to clipboard
@SerialName(value = "CompletedAt")
val completedAt: String?
Link copied to clipboard
@SerialName(value = "Message")
val message: String?
Link copied to clipboard
@SerialName(value = "StartedAt")
val startedAt: String?
Link copied to clipboard
@SerialName(value = "State")
val state: ServiceUpdateStatus.State?