Api Problem
data class ApiProblem(@Json(name = "status" ) val status: Int, @Json(name = "type" ) val type: String, @Json(name = "title" ) val title: String, @Json(name = "detail" ) val detail: String? = null)
Response detailing why a request was rejected. Adheres to the RFC-7807 standard (colloquially known as \"Problem JSON\") for the response format.
Parameters
status
HTTP status code of the problem response.
type
A URN (Uniform Resource Name) identifying the type of the problem.
title
The underlying reason for the problem.
detail
A longer and comprehensive description of the problem. May be null
if not available.