toggle menu
RaceAssist
1.0-SNAPSHOT
jvm
switch theme
search in API
RaceAssist
/
dev.nikomaru.raceassist.horse.data
Package-level
declarations
Types
Types
Horse
Data
Link copied to clipboard
@
Serializable
data
class
HorseData
(
val
horse
:
@
Serializable
(
with
=
UUIDSerializer::class
)
UUID
,
val
breeder
:
@
Serializable
(
with
=
UUIDSerializer::class
)
UUID
?
,
val
owner
:
@
Serializable
(
with
=
UUIDSerializer::class
)
UUID
?
,
val
mother
:
@
Serializable
(
with
=
UUIDSerializer::class
)
UUID
?
,
val
father
:
@
Serializable
(
with
=
UUIDSerializer::class
)
UUID
?
,
val
history
:
ArrayList
<
History
>
,
val
color
:
String
,
val
style
:
String
,
val
speed
:
Double
,
val
jump
:
Double
,
val
health
:
Double
,
val
name
:
String
?
,
val
birthDate
:
@
Serializable
(
with
=
KZonedDateTimeSerializer::class
)
ZonedDateTime
?
,
val
lastRecordDate
:
@
Serializable
(
with
=
KZonedDateTimeSerializer::class
)
ZonedDateTime
,
val
deathDate
:
@
Serializable
(
with
=
KZonedDateTimeSerializer::class
)
ZonedDateTime
?
)
KZoned
Date
Time
Serializer
Link copied to clipboard
object
KZonedDateTimeSerializer
:
KSerializer
<
ZonedDateTime
>