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 www .j av a 2 s . c o m*/ * Copyright 2014 (c) Jawbone. All rights reserved. * */ package com.jawbone.upplatformsdk.datamodel; public class Meta { public Integer code; public String message; public String userXid; public Integer time; public String errorType; public String errorDetail; public String errorUserMsg; public Integer getCode() { return code; } public String getMessage() { return message; } public String getUserXid() { return userXid; } public Integer getTime() { return time; } public String getErrorType() { return errorType; } public String getErrorDetail() { return errorDetail; } public String getErrorUserMsg() { return errorUserMsg; } }