commonMain.hassemble.core.boot.statehandling.StatesRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hassemble-jvm Show documentation
Show all versions of hassemble-jvm Show documentation
Interact with your Home Assistant server using Kotlin.
The newest version!
package hassemble.core.boot.statehandling
import kotlinx.serialization.Serializable
@Serializable
internal data class StatesRequest(
val id: Int,
val type: String = "get_states"
)