Package-level declarations

Types

Link copied to clipboard
@Serializable
data class Entry(val x: Double? = null, val y: Double? = null)
Link copied to clipboard
@Serializable
data class EXIGraph(val id: String? = null, val title: String? = null, val type: String? = null, val isActive: Boolean? = null, val graphData: List<GraphDatum>? = null, val unit: String? = null, val fixedUnit: String? = null, val minY: Double? = null, val maxY: Double? = null, val interval: Double? = null)
Link copied to clipboard
@Serializable
data class GraphDatum(val id: String? = null, val name: String? = null, val entries: List<Entry>? = null)