Error

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

Constructors

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

Properties

Link copied to clipboard
val code: String?

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.