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 v a 2s . c o m*/ import java.util.Date; import de.hdodenhof.xingapi.enums.ActivityObjectType; public class Bookmark extends ActivityObject { private Date createdAt; private String title; private User creator; private String url; private String description; private String image; private String bookmarkType; public Date getCreatedAt() { return createdAt; } public String getTitle() { return title; } public User getCreator() { return creator; } public String getUrl() { return url; } public String getDescription() { return description; } public String getImage() { return image; } public String getBookmarkType() { return bookmarkType; } @Override public ActivityObjectType getType() { return ActivityObjectType.BOOKMARK; } }