Back to project page uber-android.
The source code is released under:
MIT License
If you think the Android project uber-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * UberAPILib/*from w w w .j a va2s . com*/ * * This file was automatically generated by APIMATIC BETA v2.0 on 08/22/2014 */ package io.apimatic.uberapilib.models; import java.util.List; import com.fasterxml.jackson.annotation.JsonGetter; import com.fasterxml.jackson.annotation.JsonSetter; public class TimeEstimateCollectionModel extends java.util.Observable { private List<TimeEstimateModel> times; /** GETTER * List of time estimates */ @JsonGetter("times") public List<TimeEstimateModel> getTimes ( ) { return this.times; } /** SETTER * List of time estimates */ @JsonSetter("times") public void setTimes (List<TimeEstimateModel> value) { this.times = value; notifyObservers(this.times); } }