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; /*from w ww . j a va2s. c o m*/ import java.util.List; public class Contacts { private Integer total; private List<User> users; public Integer getTotal() { return total; } public void setTotal(Integer total) { this.total = total; } public List<User> getUsers() { return users; } public void setUsers(List<User> users) { this.users = users; } }