com.heanbian.block.zabbix.api.ZabbixHostGroupGetResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zabbix-client Show documentation
Show all versions of zabbix-client Show documentation
heanbian zabbix client component.
package com.heanbian.block.zabbix.api;
public class ZabbixHostGroupGetResponse {
private String groupid;
private String name;
private String internal;
public String getGroupid() {
return groupid;
}
public void setGroupid(String groupid) {
this.groupid = groupid;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getInternal() {
return internal;
}
public void setInternal(String internal) {
this.internal = internal;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy