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 . ja va 2 s . co m*/ import com.google.gson.annotations.Expose; import com.google.gson.annotations.SerializedName; /** * Time model obj */ public class Time { @Expose @SerializedName("product_id") private String productId; @Expose @SerializedName("display_name") private String displayName; @Expose @SerializedName("estimate") private int estimate; public String getProductId() { return productId; } public void setProductId(String productId) { this.productId = productId; } public String getDisplayName() { return displayName; } public void setDisplayName(String displayName) { this.displayName = displayName; } public int getEstimate() { return estimate; } public void setEstimate(int estimate) { this.estimate = estimate; } }