
com.zabbix4j.action.ActionExistsResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Zabbix4j Show documentation
Show all versions of Zabbix4j Show documentation
Zabbix API library for the Java language.
The newest version!
package com.zabbix4j.action;
import com.zabbix4j.ZabbixApiResponse;
import lombok.Data;
/**
* Response paramter for action.exists
*
* @author yajima 2014
*/
@Data
public class ActionExistsResponse extends ZabbixApiResponse {
private Boolean result;
public ActionExistsResponse() {
super();
}
public Boolean getResult() {
return result;
}
public void setResult(Boolean result) {
this.result = result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy