Package-level declarations

Types

Link copied to clipboard
data class ChatError(    val code: Int = -1,     var message: String = "",     var statusCode: Int = -1,     val exceptionFields: Map<String, String> = mapOf(),     var moreInfo: String = "",     val details: List<ChatErrorDetail> = emptyList(),     var duration: String = "")

The error response from the chat server.

Link copied to clipboard
data class ChatErrorDetail(val code: Int, val messages: List<String>)

The error detail.