jellyfin-sdk-kotlin
Toggle table of contents
latest-SNAPSHOT
common
Target filter
common
Switch theme
Search in API
Skip to content
jellyfin-sdk-kotlin
jellyfin-model
/
org.jellyfin.sdk.model.api
/
ProblemDetails
Problem
Details
common
@
Serializable
data
class
ProblemDetails
(
val
type
:
String
?
=
null
,
val
title
:
String
?
=
null
,
val
status
:
Int
?
=
null
,
val
detail
:
String
?
=
null
,
val
instance
:
String
?
=
null
)
Members
Constructors
Problem
Details
Link copied to clipboard
common
constructor
(
type
:
String
?
=
null
,
title
:
String
?
=
null
,
status
:
Int
?
=
null
,
detail
:
String
?
=
null
,
instance
:
String
?
=
null
)
Properties
detail
Link copied to clipboard
common
@
SerialName
(
value
=
"detail"
)
val
detail
:
String
?
instance
Link copied to clipboard
common
@
SerialName
(
value
=
"instance"
)
val
instance
:
String
?
status
Link copied to clipboard
common
@
SerialName
(
value
=
"status"
)
val
status
:
Int
?
title
Link copied to clipboard
common
@
SerialName
(
value
=
"title"
)
val
title
:
String
?
type
Link copied to clipboard
common
@
SerialName
(
value
=
"type"
)
val
type
:
String
?