package weiboclient4j.model;
import org.codehaus.jackson.annotate.JsonIgnoreProperties;
/**
* @author Hover Ruan
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class FriendshipInfo {
private long id;
private String screenName;
private boolean followedBy;
private boolean following;
private boolean notificationsEnabled;
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
public String getScreenName() {
return screenName;
}
public void setScreenName(String screenName) {
this.screenName = screenName;
}
public boolean isFollowedBy() {
return followedBy;
}
public void setFollowedBy(boolean followedBy) {
this.followedBy = followedBy;
}
public boolean isFollowing() {
return following;
}
public void setFollowing(boolean following) {
this.following = following;
}
public boolean isNotificationsEnabled() {
return notificationsEnabled;
}
public void setNotificationsEnabled(boolean notificationsEnabled) {
this.notificationsEnabled = notificationsEnabled;
}
}