-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from soucolline/develop
Version 1.0.2
- Loading branch information
Showing
14 changed files
with
79 additions
and
248 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 9 additions & 4 deletions
13
...java/com/zlatan/uv_today_android/Models/DataModel/ServiceModels/ForecastObjectResponse.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
package com.zlatan.uv_today_android.Models.DataModel.ServiceModels | ||
|
||
import com.zlatan.uv_today_android.Models.DataModel.Index | ||
import com.google.gson.annotations.SerializedName | ||
|
||
class ForecastObjectResponse(val currently: CurrentForecast) | ||
|
||
class CurrentForecast(val uvIndex: Index) | ||
data class ForecastObjectResponse( | ||
val lat: Double, | ||
val lon: Double, | ||
@SerializedName("date_iso") | ||
val dateIso: String, | ||
val date: Int, | ||
val value: Double | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.