All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.concordfax.RealTimeFaxStatusExResponse Maven / Gradle / Ivy

The newest version!

package com.concordfax;

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="return" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="FaxStatusList" type="{urn:FaxWS}RealTimeFaxStatusExList"/>
 *         <element name="WSError" type="{urn:FaxWS}WSError"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "_return", "faxStatusList", "wsError" }) @XmlRootElement(name = "RealTimeFaxStatusExResponse") public class RealTimeFaxStatusExResponse { @XmlElement(name = "return") protected boolean _return; @XmlElement(name = "FaxStatusList", required = true) protected RealTimeFaxStatusExList faxStatusList; @XmlElement(name = "WSError", required = true) protected WSError wsError; /** * Gets the value of the return property. * */ public boolean isReturn() { return _return; } /** * Sets the value of the return property. * */ public void setReturn(boolean value) { this._return = value; } /** * Gets the value of the faxStatusList property. * * @return * possible object is * {@link RealTimeFaxStatusExList } * */ public RealTimeFaxStatusExList getFaxStatusList() { return faxStatusList; } /** * Sets the value of the faxStatusList property. * * @param value * allowed object is * {@link RealTimeFaxStatusExList } * */ public void setFaxStatusList(RealTimeFaxStatusExList value) { this.faxStatusList = value; } /** * Gets the value of the wsError property. * * @return * possible object is * {@link WSError } * */ public WSError getWSError() { return wsError; } /** * Sets the value of the wsError property. * * @param value * allowed object is * {@link WSError } * */ public void setWSError(WSError value) { this.wsError = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy