
com.podio.app.ApplicationUpdate 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;
public class ApplicationUpdate extends ApplicationBase {
/**
* True if all space members should be resubscribed to this app, false
* otherwise
*/
private boolean resubscribe;
private List fields;
public ApplicationUpdate() {
super();
}
public ApplicationUpdate(boolean resubscribe,
ApplicationConfiguration configuration,
List fields) {
super(configuration);
this.resubscribe = resubscribe;
this.fields = fields;
}
public boolean isResubscribe() {
return resubscribe;
}
public void setResubscribe(boolean resubscribe) {
this.resubscribe = resubscribe;
}
public List getFields() {
return fields;
}
public void setFields(List fields) {
this.fields = fields;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy