com.imsweb.seerapi.client.siterecode.SiteRecode 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) 2014 Information Management Services, Inc.
*/
package com.imsweb.seerapi.client.siterecode;
import com.fasterxml.jackson.annotation.JsonProperty;
public class SiteRecode {
@JsonProperty("site")
protected String _site;
@JsonProperty("hist")
protected String _hist;
@JsonProperty("behavior")
protected String _behavior;
@JsonProperty("site_group")
protected String _siteGroup;
public String getSite() {
return _site;
}
public void setSite(String site) {
_site = site;
}
public String getHist() {
return _hist;
}
public void setHist(String hist) {
_hist = hist;
}
public String getBehavior() {
return _behavior;
}
public void setBehavior(String behavior) {
_behavior = behavior;
}
public String getSiteGroup() {
return _siteGroup;
}
public void setSiteGroup(String siteGroup) {
_siteGroup = siteGroup;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy