ErrorDetail

@Serializable
data class ErrorDetail(val code: String?, val target: String?, val message: String?, val innerError: InnerError? = null)(source)

Data class representing the error details.

Constructors

Link copied to clipboard
constructor(code: String?, target: String?, message: String?, innerError: InnerError? = null)

Properties

Link copied to clipboard
val code: String?

The code of the error.

Link copied to clipboard

The inner error of the error.

Link copied to clipboard

The message of the error.

Link copied to clipboard

The target of the error.