Kotlin Multiplatform Client for Docker
Toggle table of contents
snapshot
common
Target filter
common
Switch theme
Search in API
Skip to content
Kotlin Multiplatform Client for Docker
Kotlin Multiplatform Client for Docker
/
dev.limebeck.libs.docker.client.model
/
ContainerStatus
Container
Status
@
Serializable
data
class
ContainerStatus
(
val
containerID
:
String
?
=
null
,
val
PID
:
Int
?
=
null
,
val
exitCode
:
Int
?
=
null
)
represents the status of a container.
Parameters
container
ID
PID
exit
Code
Members
Constructors
Container
Status
Link copied to clipboard
constructor
(
containerID
:
String
?
=
null
,
PID
:
Int
?
=
null
,
exitCode
:
Int
?
=
null
)
Properties
container
ID
Link copied to clipboard
@
SerialName
(
value
=
"ContainerID"
)
val
containerID
:
String
?
exit
Code
Link copied to clipboard
@
SerialName
(
value
=
"ExitCode"
)
val
exitCode
:
Int
?
PID
Link copied to clipboard
@
SerialName
(
value
=
"PID"
)
val
PID
:
Int
?