Back to project page xing-android-sdk.
The source code is released under:
Apache License
If you think the Android project xing-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 de.hdodenhof.xingapi.models; /* www. j a v a 2 s . c om*/ public class Conversation { private String id; private String subject; private Integer messageCount; private Integer unreadMessageCount; public String getId() { return id; } public String getSubject() { return subject; } public Integer getMessageCount() { return messageCount; } public Integer getUnreadMessageCount() { return unreadMessageCount; } }