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

com.julienvey.trello.domain.Card 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.Date;
import java.util.List;

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

    private String id;
    private String name;
    private String idList;
    private String desc;
    private String url;
    private Date due;
    private List idMembers;
    private List




© 2015 - 2024 Weber Informatics LLC | Privacy Policy