com.imsweb.seerapi.client.siterecode.SiteGroupAlgorithm 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) 2024 Information Management Services, Inc.
*/
package com.imsweb.seerapi.client.siterecode;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
public class SiteGroupAlgorithm {
private String id;
private String name;
private String version;
@JsonProperty("required_input")
private List requiredInput;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getVersion() {
return version;
}
public void setVersion(String version) {
this.version = version;
}
public List getRequiredInput() {
return requiredInput;
}
public void setRequiredInput(List requiredInput) {
this.requiredInput = requiredInput;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy