
io.sealights.agents.plugin.upgrade.entities.UpgradeResponseMetaQuery Maven / Gradle / Ivy
package io.sealights.agents.plugin.upgrade.entities;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
/**
* Created by shahar on 8/3/2016.
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class UpgradeResponseMetaQuery {
private String agentType;
private String isDefault;
public UpgradeResponseMetaQuery() {
}
public String getAgentType() {
return agentType;
}
public void setAgentType(String agentType) {
this.agentType = agentType;
}
public String getIsDefault() {
return isDefault;
}
public void setIsDefault(String isDefault) {
this.isDefault = isDefault;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy