ErrorDetailResponse

data class ErrorDetailResponse(val code: String, val details: List<ErrorDetailResponse>? = null, val message: String, val target: String? = null)

Constructors

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

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The error's code.

Link copied to clipboard

Additional error details.

Link copied to clipboard

A human readable error message.

Link copied to clipboard
val target: String? = null

Indicates which property in the request is responsible for the error.