ErrorResponseAdmDto
data class ErrorResponseAdmDto(var endpoint: String, var code: String? = null, var messages: MutableList<ErrorMessageAdmDto>? = null, var datetime: OffsetDateTime? = null, var traceId: String? = null)
Response if an error occurs. It contains information about the error, the date-time and the path for better support in error cases.
Parameters
endpoint
Endpoint name in which the error occurred.
code
Error code
messages
Array of the error messages. In case of wrong input parameters, for each wrong parameter an array element will be present.
datetime
Date time of the server when the error occurred. Defined in RFC 3339 format.
traceId
Trace or request ID of the call.
Constructors
Link copied to clipboard
constructor(endpoint: String, code: String? = null, messages: MutableList<ErrorMessageAdmDto>? = null, datetime: OffsetDateTime? = null, traceId: String? = null)