diff --git a/agrilinkvocpro/growth_recipe_feature/src/main/java/com/syaroful/agrilinkvocpro/growth_recipe_feature/data/model/ClusteringResponse.kt b/agrilinkvocpro/growth_recipe_feature/src/main/java/com/syaroful/agrilinkvocpro/growth_recipe_feature/data/model/ClusteringResponse.kt new file mode 100644 index 0000000..ecc2a06 --- /dev/null +++ b/agrilinkvocpro/growth_recipe_feature/src/main/java/com/syaroful/agrilinkvocpro/growth_recipe_feature/data/model/ClusteringResponse.kt @@ -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 +) \ No newline at end of file