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

com.julienvey.trello.domain.CardWithActions 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 CardWithActions extends Card {

	private List actions;

	public List getActions() {
		return actions;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy