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; /* w ww. j av 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 three * hourly weather forecast query. */ public class SearchResponseForThreeHourlyForecastQuery { @SerializedName("cod") private int code; @SerializedName("message") private String message; @SerializedName("city") private CityInfo cityInfo; @SerializedName("cnt") private int forecastCount; @SerializedName("list") private List<CityThreeHourlyWeatherForecast> threeHourlyWeatherForecasts; public CityInfo getCityInfo() { return cityInfo; } public List<CityThreeHourlyWeatherForecast> getThreeHourlyWeatherForecasts() { return threeHourlyWeatherForecasts; } }