commonMain.com.saveourtool.save.agent.AgentInfo.kt Maven / Gradle / Ivy
The newest version!
package com.saveourtool.save.agent
import kotlinx.serialization.Serializable
/**
* Info about Agent
*
* @property containerId unique ID of the agent
* @property containerName unique name of the agent
* @property version version of **save-agent**
*/
@Serializable
data class AgentInfo(
val containerId: String,
val containerName: String,
val version: String,
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy