LastError

@Serializable
data class LastError(val code: String, val message: String)

The last error information.

Constructors

Link copied to clipboard
constructor(code: String, message: String)

Properties

Link copied to clipboard
@SerialName(value = "code")
val code: String

One of server_error or rate_limit_exceeded.

Link copied to clipboard
@SerialName(value = "message")
val message: String

A human-readable description of the error.