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.java 2s.co m*/ import com.google.gson.annotations.Expose; import com.google.gson.annotations.SerializedName; /** * Uber Oauth2 AccessToken model obj */ public class AccessToken { @Expose @SerializedName("access_token") private String accessToken; @Expose @SerializedName("token_type") private String tokenType; public AccessToken() { } public String getAccessToken() { return this.accessToken; } public String getTokenType() { return this.tokenType; } public void setAccessToken(String paramString) { this.accessToken = paramString; } public void setTokenType(String paramString) { this.tokenType = paramString; } }