net.authorize.api.contract.v1.UpdateSplitTenderGroupRequest Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2015.05.26 at 11:27:57 AM PDT
//
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.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="splitTenderId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="splitTenderStatus" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}splitTenderStatusEnum"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"splitTenderId",
"splitTenderStatus"
})
@XmlRootElement(name = "updateSplitTenderGroupRequest")
public class UpdateSplitTenderGroupRequest
extends ANetApiRequest
{
@XmlElement(required = true)
protected String splitTenderId;
@XmlElement(required = true)
protected SplitTenderStatusEnum splitTenderStatus;
/**
* Gets the value of the splitTenderId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSplitTenderId() {
return splitTenderId;
}
/**
* Sets the value of the splitTenderId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSplitTenderId(String value) {
this.splitTenderId = value;
}
/**
* Gets the value of the splitTenderStatus property.
*
* @return
* possible object is
* {@link SplitTenderStatusEnum }
*
*/
public SplitTenderStatusEnum getSplitTenderStatus() {
return splitTenderStatus;
}
/**
* Sets the value of the splitTenderStatus property.
*
* @param value
* allowed object is
* {@link SplitTenderStatusEnum }
*
*/
public void setSplitTenderStatus(SplitTenderStatusEnum value) {
this.splitTenderStatus = value;
}
}