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

com.concordfax.FaxSendExResponse 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="FaxJobIds" type="{urn:FaxWS}FaxJobIds"/>
 *         <element name="TTFP" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="WSError" type="{urn:FaxWS}WSError"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "_return", "faxJobIds", "ttfp", "wsError" }) @XmlRootElement(name = "FaxSendExResponse") public class FaxSendExResponse { @XmlElement(name = "return") protected boolean _return; @XmlElement(name = "FaxJobIds", required = true) protected FaxJobIds faxJobIds; @XmlElement(name = "TTFP") protected long ttfp; @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 faxJobIds property. * * @return * possible object is * {@link FaxJobIds } * */ public FaxJobIds getFaxJobIds() { return faxJobIds; } /** * Sets the value of the faxJobIds property. * * @param value * allowed object is * {@link FaxJobIds } * */ public void setFaxJobIds(FaxJobIds value) { this.faxJobIds = value; } /** * Gets the value of the ttfp property. * */ public long getTTFP() { return ttfp; } /** * Sets the value of the ttfp property. * */ public void setTTFP(long value) { this.ttfp = 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