output-service-rdb-consumer/src/main/kotlin/api/ApiObject.kt

8 lines
190 B
Kotlin
Raw Normal View History

2021-08-12 15:59:28 +02:00
package api
import com.google.gson.annotations.SerializedName
data class ApiObject(
@SerializedName("tag") val tag: String,
@SerializedName("probability") val probability: Double
)