ProblemDetails

@Serializable
data class ProblemDetails(val type: String? = null, val title: String? = null, val status: Int? = null, val detail: String? = null, val instance: String? = null)

Constructors

Link copied to clipboard
constructor(type: String? = null, title: String? = null, status: Int? = null, detail: String? = null, instance: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "detail")
val detail: String?
Link copied to clipboard
@SerialName(value = "instance")
val instance: String?
Link copied to clipboard
@SerialName(value = "status")
val status: Int?
Link copied to clipboard
@SerialName(value = "title")
val title: String?
Link copied to clipboard
@SerialName(value = "type")
val type: String?