Back to project page uppidy-android-sdk.
The source code is released under:
Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCT...
If you think the Android project uppidy-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.
package com.uppidy.android.sdk.api; //www.java2s . c om /** * Backup container, i.e. container for backup of SMS / MMS messages from * specific device * * Part of the Uppidy Web Services API * * @author arudnev@uppidy.com */ public class ApiContainer extends ApiEntity { private String deviceId; private String description; private ApiContactInfo owner; public String getDeviceId() { return deviceId; } public void setDeviceId(String deviceId) { this.deviceId = deviceId; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public ApiContactInfo getOwner() { return owner; } public void setOwner(ApiContactInfo owner) { this.owner = owner; } }