toggle menu
lib
common
switch theme
search in API
lib
/
app.moviebase.trakt.model
/
TraktPerson
Trakt
Person
@
Serializable
data
class
TraktPerson
(
val
name
:
String
,
val
ids
:
TraktPersonIds
,
val
biography
:
String
?
=
null
,
val
birthday
:
String
?
=
null
,
val
death
:
LocalDate
?
=
null
,
val
birthplace
:
String
?
=
null
,
val
homepage
:
String
?
=
null
)
Members
Constructors
Trakt
Person
Link copied to clipboard
constructor
(
name
:
String
,
ids
:
TraktPersonIds
,
biography
:
String
?
=
null
,
birthday
:
String
?
=
null
,
death
:
LocalDate
?
=
null
,
birthplace
:
String
?
=
null
,
homepage
:
String
?
=
null
)
Properties
biography
Link copied to clipboard
@
SerialName
(
value
=
"biography"
)
val
biography
:
String
?
=
null
birthday
Link copied to clipboard
@
SerialName
(
value
=
"birthday"
)
val
birthday
:
String
?
=
null
birthplace
Link copied to clipboard
@
SerialName
(
value
=
"birthplace"
)
val
birthplace
:
String
?
=
null
death
Link copied to clipboard
@
SerialName
(
value
=
"death"
)
val
death
:
LocalDate
?
=
null
homepage
Link copied to clipboard
@
SerialName
(
value
=
"homepage"
)
val
homepage
:
String
?
=
null
ids
Link copied to clipboard
@
SerialName
(
value
=
"ids"
)
val
ids
:
TraktPersonIds
name
Link copied to clipboard
@
SerialName
(
value
=
"name"
)
val
name
:
String