- Remove old api and response

This commit is contained in:
2024-09-30 10:58:28 +01:00
parent 79c123021a
commit 6e28db5feb
2 changed files with 0 additions and 16 deletions

View File

@@ -1,15 +0,0 @@
package com.appttude.h_mal.atlas_weather.data.network.response.weather
import com.appttude.h_mal.atlas_weather.EGLL
import com.appttude.h_mal.atlas_weather.EGWU
import com.appttude.h_mal.atlas_weather.F8628
import com.google.gson.annotations.SerializedName
data class Stations (
@SerializedName("EGWU" ) var EGWU : EGWU? = EGWU(),
@SerializedName("EGLC" ) var EGLC : EGLC? = EGLC(),
@SerializedName("EGLL" ) var EGLL : EGLL? = EGLL(),
@SerializedName("D5621" ) var D5621 : D5621? = D5621(),
@SerializedName("F8628" ) var F8628 : F8628? = F8628()
)

View File

@@ -19,7 +19,6 @@ data class WeatherApiResponse(
@SerializedName("description") var description: String? = null,
@SerializedName("days") var days: ArrayList<Days> = arrayListOf(),
@SerializedName("alerts") var alerts: ArrayList<String> = arrayListOf(),
// @SerializedName("stations") var stations: Stations? = Stations(),
@SerializedName("currentConditions") var currentConditions: CurrentConditions? = CurrentConditions()
): DataMapper<FullWeather> {