com.podio.app.Dependencies 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.app;
import java.util.List;
import java.util.Map;
public class Dependencies {
private List apps;
private Map> dependencies;
public List getApps() {
return apps;
}
public void setApps(List apps) {
this.apps = apps;
}
public Map> getDependencies() {
return dependencies;
}
public void setDependencies(Map> dependencies) {
this.dependencies = dependencies;
}
}