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; /*w ww . ja va 2 s .c o m*/ public class Visit { private String userId; private String displayName; private String companyName; private PhotoUrls photoUrls; private Integer visitCount; public String getUserId() { return userId; } public String getDisplayName() { return displayName; } public String getCompanyName() { return companyName; } public PhotoUrls getPhotoUrls() { return photoUrls; } public Integer getVisitCount() { return visitCount; } }