package io.evanwong.oss.hipchat.v2.emoticons;
import io.evanwong.oss.hipchat.v2.commons.Links;
public class EmoticonItem {
private String url;
private Links links;
private String id;
private String shortcut;
private EmoticonType type;
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public Links getLinks() {
return links;
}
public void setLinks(Links links) {
this.links = links;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getShortcut() {
return shortcut;
}
public void setShortcut(String shortcut) {
this.shortcut = shortcut;
}
public EmoticonType getType() {
return type;
}
public void setType(EmoticonType type) {
this.type = type;
}
}