Back to project page UK-Weather-repo.
The source code is released under:
Apache License
If you think the Android project UK-Weather-repo listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.haringeymobile.ukweather.data.objects; //from w w w. j a v a 2 s. c o m import java.util.List; import com.google.gson.annotations.SerializedName; /** * An object corresponding to the JSON data for the Open Weather Map daily * weather forecast query. */ public class SearchResponseForDailyForecastQuery { @SerializedName("city") private CityInfo cityInfo; @SerializedName("cnt") private int dayCount; @SerializedName("cod") private int code; @SerializedName("list") private List<CityDailyWeatherForecast> dailyWeatherForecasts; @SerializedName("message") private String message; public CityInfo getCityInfo() { return cityInfo; } public List<CityDailyWeatherForecast> getDailyWeatherForecasts() { return dailyWeatherForecasts; } }