ErrorDetailResponse

data class ErrorDetailResponse(val errorCode: String? = null, val errorData: List<Any>? = null, val errorMessage: String? = null)

Definition of ErrorDetail

Constructors

Link copied to clipboard
constructor(errorCode: String? = null, errorData: List<Any>? = null, errorMessage: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val errorCode: String? = null

The name or code associated with the error.

Link copied to clipboard
val errorData: List<Any>? = null

A list of key value pairs that provides contextual information about why an error occured.

Link copied to clipboard
val errorMessage: String? = null

A message that describes the error.