commonMain.com.saveourtool.save.entities.AgentStatusDto.kt Maven / Gradle / Ivy
The newest version!
package com.saveourtool.save.entities
import com.saveourtool.save.agent.AgentState
import com.saveourtool.save.utils.getCurrentLocalDateTime
import kotlinx.datetime.LocalDateTime
typealias AgentStatusDtoList = List
/**
* @property state current state of the agent
* @property containerId id of the agent's container
* @property time
*/
data class AgentStatusDto(
val state: AgentState,
val containerId: String,
val time: LocalDateTime = getCurrentLocalDateTime(),
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy