RawResponse

@Serializable
data class RawResponse(val id: String?, val code: String?, val message: String?, val details: List<ErrorDetail>? = null)

Data class representing the raw response of the error.

Constructors

Link copied to clipboard
constructor(id: String?, code: String?, message: String?, details: List<ErrorDetail>? = null)

Properties

Link copied to clipboard
val code: String?

The code of the error.

Link copied to clipboard
val details: List<ErrorDetail>? = null

The details of the error.

Link copied to clipboard
val id: String?

The id of the error.

Link copied to clipboard

The message of the error.