Error

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

Constructors

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

Properties

Link copied to clipboard

A string code that represents the error, such as username_exists_code.

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

A more detailed message that describes the error.

Link copied to clipboard

A message that describes the error.