
com.adlibsoftware.client.SubmitActionRequestResponse Maven / Gradle / Ivy
package com.adlibsoftware.client;
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>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="SubmitActionRequestResult" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"submitActionRequestResult"
})
@XmlRootElement(name = "SubmitActionRequestResponse")
public class SubmitActionRequestResponse {
@XmlElement(name = "SubmitActionRequestResult")
protected Integer submitActionRequestResult;
/**
* Gets the value of the submitActionRequestResult property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getSubmitActionRequestResult() {
return submitActionRequestResult;
}
/**
* Sets the value of the submitActionRequestResult property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setSubmitActionRequestResult(Integer value) {
this.submitActionRequestResult = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy