Type Response
data class TypeResponse<T : Any>(val value: T, val awaitableId: String, val id: String = UUID.randomUUID().toString(), val timestamp: Instant = Instant.now(), persistent: Boolean = false) : AwaitableResponse
Response providing a value of the requested type.
Parameters
T
The type of value provided
value
The value provided by the user
awaitable Id
The ID of the TypeRequest this responds to