com.imsweb.seerapi.client.disease.DiseaseChangelog Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of seerapi-client-java Show documentation
Show all versions of seerapi-client-java Show documentation
API mapping for SEER*API in Java
The newest version!
/*
* Copyright (C) 2012 Information Management Services, Inc.
*/
package com.imsweb.seerapi.client.disease;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.imsweb.seerapi.client.shared.Changelog;
public class DiseaseChangelog extends Changelog {
@JsonProperty("adds")
private List _adds;
@JsonProperty("deletes")
private List _deletes;
@JsonProperty("mods")
private List _mods;
public List getAdds() {
return _adds;
}
public void setAdds(List adds) {
_adds = adds;
}
public List getDeletes() {
return _deletes;
}
public void setDeletes(List deletes) {
_deletes = deletes;
}
public List getMods() {
return _mods;
}
public void setMods(List mods) {
_mods = mods;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy