This commit is contained in:
MM20 2022-02-11 20:35:27 +01:00
parent 6c9ca39c86
commit 0532b65cea
No known key found for this signature in database
GPG Key ID: 0B61A8F2DEAFA389

View File

@ -5,10 +5,10 @@ import retrofit2.http.GET
import retrofit2.http.Query
data class BrightSkyResult(
val weather: Array<BrightSkyResultWether>
val weather: Array<BrightSkyResultWeather>
)
data class BrightSkyResultWether(
data class BrightSkyResultWeather(
val timestamp: String?,
@SerializedName("source_id") val sourceId: Int?,
@SerializedName("cloud_cover") val cloudCover: Double?,