Back to project page UPPlatform_Android_SDK.
The source code is released under:
Apache License
If you think the Android project UPPlatform_Android_SDK listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * @author Omer Muhammed//from ww w.jav a2 s . c o m * Copyright 2014 (c) Jawbone. All rights reserved. * */ package com.jawbone.upplatformsdk.api.response; /** * Note that since this is the call for accessToken, the server response is not * of the form: * { * meta??: { ... Response Metadata ... }, * data??: { ... Resource or Collection ... } * } * * All other API calls have this response format */ public class OauthAccessTokenResponse { public int expires_in; public String token_type; public String access_token; public String refresh_token; }