com.podio.root.SystemStatus 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.root;
public class SystemStatus {
private String version;
private boolean database;
private boolean messaging;
public String getVersion() {
return version;
}
public void setVersion(String version) {
this.version = version;
}
public boolean isDatabase() {
return database;
}
public void setDatabase(boolean database) {
this.database = database;
}
public boolean isMessaging() {
return messaging;
}
public void setMessaging(boolean messaging) {
this.messaging = messaging;
}
}