com.falkonry.helper.models.AssessmentRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client Show documentation
Show all versions of client Show documentation
Falkonry Java Client to access Condition Prediction APIs.
package com.falkonry.helper.models;
import org.codehaus.jackson.annotate.JsonIgnoreProperties;
import java.util.ArrayList;
import java.util.List;
/*!
* falkonry-java-client
* Copyright(c) 2016 Falkonry Inc
* MIT Licensed
*/
@JsonIgnoreProperties(ignoreUnknown=true)
public class AssessmentRequest {
private String name;
private List inputList = new ArrayList();
private List aprioriConditionList = new ArrayList();
public List getInputList() {
return inputList;
}
public AssessmentRequest setInputList(List inputList) {
this.inputList = inputList;
return this;
}
public List getAprioriConditionList() {
return aprioriConditionList;
}
public AssessmentRequest setAprioriConditionList(List aprioriConditionList) {
this.aprioriConditionList = aprioriConditionList;
return this;
}
public String getName() {
return name;
}
public AssessmentRequest setName(String name) {
this.name = name;
return this;
}
}