All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.julienvey.trello.domain.CheckList Maven / Gradle / Ivy

There is a newer version: 0.14
Show newest version
package com.julienvey.trello.domain;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

import java.util.List;

@JsonIgnoreProperties(ignoreUnknown = true)
public class CheckList extends TrelloEntity {

    private String id;
    private String name;
    private String idBoard;
    private String idCard;
    private int position;
    private List checkItems;
    private List cards;
    private int pos;

    public List getCards() {
        return cards;
    }

    public void setCards(List cards) {
        this.cards = cards;
    }

    public List getCheckItems() {
        return checkItems;
    }

    public void setCheckItems(List checkItems) {
        this.checkItems = checkItems;
    }

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public String getIdBoard() {
        return idBoard;
    }

    public void setIdBoard(String idBoard) {
        this.idBoard = idBoard;
    }

    public String getIdCard() {
        return idCard;
    }

    public void setIdCard(String idCard) {
        this.idCard = idCard;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public int getPosition() {
        return position;
    }

    public void setPosition(int position) {
        this.position = position;
    }

    public int getPos() {
        return pos;
    }

    public void setPos(int pos) {
        this.pos = pos;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy