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

com.concordfax.FaxStatus 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.XmlType;


/**
 * 

Java class for FaxStatus complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="FaxStatus">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="FaxJobId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="FaxJobStatusId" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="StatusDescription" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="Error" type="{urn:FaxWS}WSError"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FaxStatus", propOrder = { "faxJobId", "faxJobStatusId", "statusDescription", "error" }) public class FaxStatus { @XmlElement(name = "FaxJobId", required = true) protected String faxJobId; @XmlElement(name = "FaxJobStatusId") protected int faxJobStatusId; @XmlElement(name = "StatusDescription", required = true) protected String statusDescription; @XmlElement(name = "Error", required = true) protected WSError error; /** * Gets the value of the faxJobId property. * * @return * possible object is * {@link String } * */ public String getFaxJobId() { return faxJobId; } /** * Sets the value of the faxJobId property. * * @param value * allowed object is * {@link String } * */ public void setFaxJobId(String value) { this.faxJobId = value; } /** * Gets the value of the faxJobStatusId property. * */ public int getFaxJobStatusId() { return faxJobStatusId; } /** * Sets the value of the faxJobStatusId property. * */ public void setFaxJobStatusId(int value) { this.faxJobStatusId = value; } /** * Gets the value of the statusDescription property. * * @return * possible object is * {@link String } * */ public String getStatusDescription() { return statusDescription; } /** * Sets the value of the statusDescription property. * * @param value * allowed object is * {@link String } * */ public void setStatusDescription(String value) { this.statusDescription = value; } /** * Gets the value of the error property. * * @return * possible object is * {@link WSError } * */ public WSError getError() { return error; } /** * Sets the value of the error property. * * @param value * allowed object is * {@link WSError } * */ public void setError(WSError value) { this.error = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy