ProblemDetails

data class ProblemDetails(val type: String = "about:blank", val status: Int? = null, val title: String? = null, val detail: String? = null, val instance: String? = null, val extensions: JsonObject = JsonObject(emptyMap()))(source)

Standard members of an RFC 9457 problem details object. type defaults to about:blank; problem-specific members are retained in extensions.

Constructors

Link copied to clipboard
constructor(type: String = "about:blank", status: Int? = null, title: String? = null, detail: String? = null, instance: String? = null, extensions: JsonObject = JsonObject(emptyMap()))

Properties

Link copied to clipboard
Link copied to clipboard
val extensions: JsonObject
Link copied to clipboard
Link copied to clipboard
val status: Int?
Link copied to clipboard
Link copied to clipboard