ClientErrorData

# ClientErrorData


data class ClientErrorData(val code: String, val info: String, val context: Map<String, String>?)

Client error representation which is returned by the MIRACL API.

# Constructors

ClientErrorData
constructor(code: String, info: String, context: Map<String, String>?)

# Properties

Name Summary
code
val code: String
Code of the error.
context
val context: Map<String, String>?
Additional information received in the error response.
info
val info: String
Human readable representation of the error.