feat: add clustering response model
This commit is contained in:
parent
ff0341e2e0
commit
aebb7d7127
|
|
@ -0,0 +1,35 @@
|
||||||
|
package com.syaroful.agrilinkvocpro.growth_recipe_feature.data.model
|
||||||
|
|
||||||
|
import com.google.gson.annotations.SerializedName
|
||||||
|
|
||||||
|
data class ClusteringResponse(
|
||||||
|
@SerializedName("Cluster")
|
||||||
|
val cluster: Int,
|
||||||
|
|
||||||
|
@SerializedName("Jam")
|
||||||
|
val jam: String,
|
||||||
|
|
||||||
|
@SerializedName("Rekomendasi")
|
||||||
|
val rekomendasi: String,
|
||||||
|
|
||||||
|
@SerializedName("Rekomendasi Perawatan")
|
||||||
|
val rekomendasiPerawatan: String,
|
||||||
|
|
||||||
|
@SerializedName("Tanggal")
|
||||||
|
val tanggal: String,
|
||||||
|
|
||||||
|
@SerializedName("created_at")
|
||||||
|
val createdAt: String,
|
||||||
|
|
||||||
|
@SerializedName("humidity")
|
||||||
|
val humidity: Double,
|
||||||
|
|
||||||
|
@SerializedName("ph")
|
||||||
|
val ph: Double,
|
||||||
|
|
||||||
|
@SerializedName("sensor_id")
|
||||||
|
val sensorId: Int,
|
||||||
|
|
||||||
|
@SerializedName("temperature")
|
||||||
|
val temperature: Double
|
||||||
|
)
|
||||||
Loading…
Reference in New Issue
Block a user