ContainerWaitResponse

@Serializable
data class ContainerWaitResponse(val statusCode: Long, val error: ContainerWaitExitError? = null)

OK response to ContainerWait operation

Parameters

statusCode

Exit code of the container

error

Constructors

Link copied to clipboard
constructor(statusCode: Long, error: ContainerWaitExitError? = null)

Properties

Link copied to clipboard
@SerialName(value = "Error")
val error: ContainerWaitExitError?
Link copied to clipboard
@SerialName(value = "StatusCode")
@Required
val statusCode: Long