Back to project page uber-java-client.
The source code is released under:
MIT License
If you think the Android project uber-java-client 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.victorsima.uber.model; //from w w w . j av a2 s. c o m import com.google.gson.annotations.Expose; import com.google.gson.annotations.SerializedName; import java.util.List; /** * Times model obj */ public class Times { @Expose @SerializedName("times") private List<Time> times; public List<Time> getTimes() { return times; } public void setTimes(List<Time> times) { this.times = times; } }