de.gesellix.docker.remote.api.PluginConfigArgs.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 name
* @param description
* @param settable
* @param `value`
*/
@JsonClass(generateAdapter = true)
data class PluginConfigArgs(
@Json(name = "Name")
var name: kotlin.String,
@Json(name = "Description")
var description: kotlin.String,
@Json(name = "Settable")
var settable: kotlin.collections.MutableList,
@Json(name = "Value")
var `value`: kotlin.collections.MutableList
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy