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

10 lines
273 B
Kotlin

package api
import com.google.gson.annotations.SerializedName
import java.time.LocalDate
data class ApiObject(
@SerializedName("tag") val tag: String,
@SerializedName("device_id") val device_id: Int,
@SerializedName("device_date") val device_date: LocalDate
)