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 w w. jav a 2s.co m*/ import java.util.List; import com.google.gson.annotations.SerializedName; /** * An object corresponding to the JSON data for the Open Weather Map 'find * cities' query. */ public class SearchResponseForFindQuery { @SerializedName("cod") private int code; @SerializedName("count") private int count; @SerializedName("list") private List<CityCurrentWeather> cities; @SerializedName("message") private String message; public List<CityCurrentWeather> getCities() { return cities; } public int getCode() { return code; } public int getCount() { return count; } }