
com.bronto.api.model.ResultItem Maven / Gradle / Ivy
The newest version!
package com.bronto.api.model;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for resultItem complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="resultItem">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="isNew" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="isError" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="errorCode" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="errorString" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "resultItem", propOrder = {
"id",
"isNew",
"isError",
"errorCode",
"errorString"
})
public class ResultItem {
protected String id;
protected Boolean isNew;
protected Boolean isError;
protected int errorCode;
protected String errorString;
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setId(String value) {
this.id = value;
}
/**
* Gets the value of the isNew property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsNew() {
return isNew;
}
/**
* Sets the value of the isNew property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsNew(Boolean value) {
this.isNew = value;
}
/**
* Gets the value of the isError property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsError() {
return isError;
}
/**
* Sets the value of the isError property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsError(Boolean value) {
this.isError = value;
}
/**
* Gets the value of the errorCode property.
*
*/
public int getErrorCode() {
return errorCode;
}
/**
* Sets the value of the errorCode property.
*
*/
public void setErrorCode(int value) {
this.errorCode = value;
}
/**
* Gets the value of the errorString property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getErrorString() {
return errorString;
}
/**
* Sets the value of the errorString property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setErrorString(String value) {
this.errorString = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy