net.authorize.api.contract.v1.GetAUJobDetailsResponse Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.06.13 at 02:31:45 PM IST
//
package net.authorize.api.contract.v1;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <extension base="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}ANetApiResponse">
* <sequence>
* <element name="totalNumInResultSet" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="auDetails" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}ListOfAUDetailsType" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"totalNumInResultSet",
"auDetails"
})
@XmlRootElement(name = "getAUJobDetailsResponse")
public class GetAUJobDetailsResponse
extends ANetApiResponse
{
protected Integer totalNumInResultSet;
protected ListOfAUDetailsType auDetails;
/**
* Gets the value of the totalNumInResultSet property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getTotalNumInResultSet() {
return totalNumInResultSet;
}
/**
* Sets the value of the totalNumInResultSet property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setTotalNumInResultSet(Integer value) {
this.totalNumInResultSet = value;
}
/**
* Gets the value of the auDetails property.
*
* @return
* possible object is
* {@link ListOfAUDetailsType }
*
*/
public ListOfAUDetailsType getAuDetails() {
return auDetails;
}
/**
* Sets the value of the auDetails property.
*
* @param value
* allowed object is
* {@link ListOfAUDetailsType }
*
*/
public void setAuDetails(ListOfAUDetailsType value) {
this.auDetails = value;
}
}