com.podio.item.ItemReference Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api Show documentation
Show all versions of api Show documentation
The official Java wrapper for the Podio API
package com.podio.item;
import java.util.List;
import org.codehaus.jackson.annotate.JsonProperty;
import com.podio.app.Application;
public class ItemReference {
private Application application;
private List items;
@JsonProperty("app")
public Application getApplication() {
return application;
}
@JsonProperty("app")
public void setApplication(Application application) {
this.application = application;
}
public List getItems() {
return items;
}
public void setItems(List items) {
this.items = items;
}
}