net.authorize.api.contract.v1.GetAUJobDetailsRequest 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.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
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}ANetApiRequest">
* <sequence>
* <element name="month">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <minLength value="4"/>
* <maxLength value="7"/>
* </restriction>
* </simpleType>
* </element>
* <element name="modifiedTypeFilter" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}AUJobTypeEnum" minOccurs="0"/>
* <element name="paging" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}Paging" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"month",
"modifiedTypeFilter",
"paging"
})
@XmlRootElement(name = "getAUJobDetailsRequest")
public class GetAUJobDetailsRequest
extends ANetApiRequest
{
@XmlElement(required = true)
protected String month;
@XmlSchemaType(name = "string")
protected AUJobTypeEnum modifiedTypeFilter;
protected Paging paging;
/**
* Gets the value of the month property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMonth() {
return month;
}
/**
* Sets the value of the month property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMonth(String value) {
this.month = value;
}
/**
* Gets the value of the modifiedTypeFilter property.
*
* @return
* possible object is
* {@link AUJobTypeEnum }
*
*/
public AUJobTypeEnum getModifiedTypeFilter() {
return modifiedTypeFilter;
}
/**
* Sets the value of the modifiedTypeFilter property.
*
* @param value
* allowed object is
* {@link AUJobTypeEnum }
*
*/
public void setModifiedTypeFilter(AUJobTypeEnum value) {
this.modifiedTypeFilter = value;
}
/**
* Gets the value of the paging property.
*
* @return
* possible object is
* {@link Paging }
*
*/
public Paging getPaging() {
return paging;
}
/**
* Sets the value of the paging property.
*
* @param value
* allowed object is
* {@link Paging }
*
*/
public void setPaging(Paging value) {
this.paging = value;
}
}