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

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

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

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

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

    private String color;
    private String name;

    /* Accessors */
    public String getColor() {
        return color;
    }

    public void setColor(String color) {
        this.color = color;
    }

    public String getName() {
        return name;
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy