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
/
HistoryResponseItem
History
Response
Item
@
Serializable
data
class
HistoryResponseItem
(
val
id
:
String
,
val
created
:
Long
,
val
createdBy
:
String
,
val
tags
:
List
<
String
>
,
val
propertySize
:
Long
,
val
comment
:
String
)
individual image layer information in response to ImageHistory operation
Parameters
id
created
created
By
tags
property
Size
comment
Members
Constructors
History
Response
Item
Link copied to clipboard
constructor
(
id
:
String
,
created
:
Long
,
createdBy
:
String
,
tags
:
List
<
String
>
,
propertySize
:
Long
,
comment
:
String
)
Properties
comment
Link copied to clipboard
@
SerialName
(
value
=
"Comment"
)
@
Required
val
comment
:
String
created
Link copied to clipboard
@
SerialName
(
value
=
"Created"
)
@
Required
val
created
:
Long
created
By
Link copied to clipboard
@
SerialName
(
value
=
"CreatedBy"
)
@
Required
val
createdBy
:
String
id
Link copied to clipboard
@
SerialName
(
value
=
"Id"
)
@
Required
val
id
:
String
property
Size
Link copied to clipboard
@
SerialName
(
value
=
"Size"
)
@
Required
val
propertySize
:
Long
tags
Link copied to clipboard
@
SerialName
(
value
=
"Tags"
)
@
Required
val
tags
:
List
<
String
>