com.podio.notification.NotificationSettings 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.notification;
public class NotificationSettings {
/**
* true
if digest emails should be sent out, false
* otherwise
*/
private boolean digest;
/**
* true
if direct emails should be sent out, false
* otherwise
*/
private boolean direct;
public NotificationSettings() {
super();
}
public NotificationSettings(boolean digest, boolean direct) {
super();
this.digest = digest;
this.direct = direct;
}
public boolean isDigest() {
return digest;
}
public void setDigest(boolean digest) {
this.digest = digest;
}
public boolean isDirect() {
return direct;
}
public void setDirect(boolean direct) {
this.direct = direct;
}
}