ErrorEntityResponse

data class ErrorEntityResponse(val code: String? = null, val details: List<ErrorEntityResponse>? = null, val extendedCode: String? = null, val innerErrors: List<ErrorEntityResponse>? = null, val message: String? = null, val messageTemplate: String? = null, val parameters: List<String>? = null, val target: String? = null)

Body of the error response returned from the API.

Constructors

Link copied to clipboard
constructor(code: String? = null, details: List<ErrorEntityResponse>? = null, extendedCode: String? = null, innerErrors: List<ErrorEntityResponse>? = null, message: String? = null, messageTemplate: String? = null, parameters: List<String>? = null, target: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val code: String? = null

Basic error code.

Link copied to clipboard

Error Details.

Link copied to clipboard
val extendedCode: String? = null

Type of error.

Link copied to clipboard

Inner errors.

Link copied to clipboard
val message: String? = null

Any details of the error.

Link copied to clipboard
val messageTemplate: String? = null

Message template.

Link copied to clipboard
val parameters: List<String>? = null

Parameters for the template.

Link copied to clipboard
val target: String? = null

The error target.