
com.zabbix4j.template.TemplateDeleteResponse 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.template;
import com.zabbix4j.ZabbixApiResponse;
import java.util.List;
/**
* @author Suguru Yajima
*/
public class TemplateDeleteResponse extends ZabbixApiResponse {
private Result result;
public TemplateDeleteResponse() {
super();
}
/**
* Gets result.
*
* @return Value of result.
*/
public Result getResult() {
return result;
}
/**
* Sets new result.
*
* @param result New value of result.
*/
public void setResult(Result result) {
this.result = result;
}
public class Result {
private List templateids;
/**
* Gets templateids.
*
* @return Value of templateids.
*/
public List getTemplateids() {
return templateids;
}
/**
* Sets new templateids.
*
* @param templateids New value of templateids.
*/
public void setTemplateids(List templateids) {
this.templateids = templateids;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy