Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion src/main/java/org/trello4j/model/Checklist.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,22 @@ public void setCheckItems(List<CheckItem> checkItems) {

public class CheckItem extends TrelloObject {

private String state;
private String name;
private String type;
private double pos;


public String getName() {
public String getState() {
return state;
}

public CheckItem setState(String state) {
this.state = state;
return this;
}

public String getName() {
return name;
}

Expand Down