sample-service-consumer/src/main/kotlin/api/ApiObject.kt

11 lines
211 B
Kotlin
Raw Permalink Normal View History

2021-08-13 14:19:40 +02:00
package api
2021-08-18 15:31:12 +02:00
import kotlinx.datetime.LocalDateTime
2021-08-18 14:01:16 +02:00
import kotlinx.serialization.Serializable
2021-08-13 14:19:40 +02:00
2021-08-18 14:01:16 +02:00
@Serializable
2021-08-13 14:19:40 +02:00
data class ApiObject(
2021-08-18 14:01:16 +02:00
val tag: String,
val device_id: Int,
2021-08-18 15:31:12 +02:00
val device_date: LocalDateTime
2021-08-13 14:19:40 +02:00
)