QueryResponse

@Serializable
sealed class QueryResponse

Inheritors

Types

Link copied to clipboard
@Serializable
data class Error(val time: String, val detail: String) : QueryResponse
Link copied to clipboard
@Serializable
data class Success(val time: String, val result: JsonElement) : QueryResponse

Properties

Link copied to clipboard
abstract val time: String

Functions

Link copied to clipboard
inline fun <T> QueryResponse.data(): T