de.gesellix.docker.remote.api.ExecStartConfig.kt Maven / Gradle / Ivy
/**
*
* 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 detach Detach from the command.
* @param tty Allocate a pseudo-TTY.
* @param consoleSize Initial console size, as an `[height, width]` array.
*/
@JsonClass(generateAdapter = true)
data class ExecStartConfig(
// Detach from the command.
@Json(name = "Detach")
var detach: kotlin.Boolean? = null,
// Allocate a pseudo-TTY.
@Json(name = "Tty")
var tty: kotlin.Boolean? = null,
// Initial console size, as an `[height, width]` array.
@Json(name = "ConsoleSize")
var consoleSize: kotlin.collections.MutableList? = null,
)