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

com.concordfax.GetRealTimeFaxStatus 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="UserID" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="strPIN" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="FaxJobIds" type="{urn:FaxWS}FaxJobIds"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "userID", "strPIN", "faxJobIds" }) @XmlRootElement(name = "GetRealTimeFaxStatus") public class GetRealTimeFaxStatus { @XmlElement(name = "UserID", required = true) protected String userID; @XmlElement(required = true) protected String strPIN; @XmlElement(name = "FaxJobIds", required = true) protected FaxJobIds faxJobIds; /** * Gets the value of the userID property. * * @return * possible object is * {@link String } * */ public String getUserID() { return userID; } /** * Sets the value of the userID property. * * @param value * allowed object is * {@link String } * */ public void setUserID(String value) { this.userID = value; } /** * Gets the value of the strPIN property. * * @return * possible object is * {@link String } * */ public String getStrPIN() { return strPIN; } /** * Sets the value of the strPIN property. * * @param value * allowed object is * {@link String } * */ public void setStrPIN(String value) { this.strPIN = 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy