![JAR search and dependency download from the Maven repository](/logo.png)
de.gesellix.docker.remote.api.SystemDataUsageResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docker-remote-api-model-1-45 Show documentation
Show all versions of docker-remote-api-model-1-45 Show documentation
API model for the Docker remote api v1.45
/**
*
* Please note:
* This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* Do not edit this file manually.
*
*/
@file:Suppress(
"ArrayInDataClass",
"EnumEntryName",
"RemoveRedundantQualifierName",
"UnusedImport",
)
package de.gesellix.docker.remote.api
import com.squareup.moshi.Json
import com.squareup.moshi.JsonClass
/**
*
*
* @param layersSize
* @param images
* @param containers
* @param volumes
* @param buildCache
*/
@JsonClass(generateAdapter = true)
data class SystemDataUsageResponse(
@Json(name = "LayersSize")
var layersSize: kotlin.Long? = null,
@Json(name = "Images")
var images: kotlin.collections.MutableList? = null,
@Json(name = "Containers")
var containers: kotlin.collections.MutableList? = null,
@Json(name = "Volumes")
var volumes: kotlin.collections.MutableList? = null,
@Json(name = "BuildCache")
var buildCache: kotlin.collections.MutableList? = null,
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy