
org.trello4j.model.CheckItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trello4j Show documentation
Show all versions of trello4j Show documentation
Java wrapper around Trello API. A fork of original project.
The newest version!
package org.trello4j.model;
import java.util.HashMap;
import java.util.Map;
public class CheckItem extends TrelloObject {
private String state;
private String idChecklist;
private String name;
private Object nameData;
private Integer pos;
private Map additionalProperties = new HashMap();
public String getState() {
return state;
}
public void setState(String state) {
this.state = state;
}
public String getIdChecklist() {
return idChecklist;
}
public void setIdChecklist(String idChecklist) {
this.idChecklist = idChecklist;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Object getNameData() {
return nameData;
}
public void setNameData(Object nameData) {
this.nameData = nameData;
}
public Integer getPos() {
return pos;
}
public void setPos(Integer pos) {
this.pos = pos;
}
public Map getAdditionalProperties() {
return this.additionalProperties;
}
public void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy