package com.bigfix.schemas.relevance;
import java.math.BigInteger;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for StructuredRelevanceResult complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="StructuredRelevanceResult">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="results" type="{http://schemas.bigfix.com/Relevance}ResultList"/>
* <element name="plural" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="evaltime" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
* <element name="error" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "StructuredRelevanceResult", propOrder = {
"results",
"plural",
"type",
"evaltime",
"error"
})
public class StructuredRelevanceResult {
@XmlElement(required = true)
protected ResultList results;
protected Boolean plural;
protected String type;
protected BigInteger evaltime;
protected String error;
/**
* Gets the value of the results property.
*
* @return
* possible object is
* {@link ResultList }
*
*/
public ResultList getResults() {
return results;
}
/**
* Sets the value of the results property.
*
* @param value
* allowed object is
* {@link ResultList }
*
*/
public void setResults(ResultList value) {
this.results = value;
}
/**
* Gets the value of the plural property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isPlural() {
return plural;
}
/**
* Sets the value of the plural property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setPlural(Boolean value) {
this.plural = value;
}
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setType(String value) {
this.type = value;
}
/**
* Gets the value of the evaltime property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getEvaltime() {
return evaltime;
}
/**
* Sets the value of the evaltime property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setEvaltime(BigInteger value) {
this.evaltime = value;
}
/**
* Gets the value of the error property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getError() {
return error;
}
/**
* Sets the value of the error property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setError(String value) {
this.error = value;
}
}