
com.bronto.api.model.ApiException 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.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for ApiException complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ApiException">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="errorCode" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ApiException", propOrder = {
"errorCode"
})
public class ApiException {
@XmlElement(required = true, type = Integer.class, nillable = true)
protected Integer errorCode;
/**
* Gets the value of the errorCode property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getErrorCode() {
return errorCode;
}
/**
* Sets the value of the errorCode property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setErrorCode(Integer value) {
this.errorCode = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy