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; // w w w .j a va2 s.com import com.google.gson.annotations.Expose; import com.google.gson.annotations.SerializedName; import java.util.List; /** * Prices model obj */ public class Prices { @Expose @SerializedName("prices") private List<Price> prices; public List<Price> getPrices() { return prices; } public void setPrices(List<Price> prices) { this.prices = prices; } }