com.concordfax.GetFaxBroadcastReport 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="JobId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="RecipientType" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="RecipAddress" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"userID",
"strPIN",
"jobId",
"recipientType",
"recipAddress"
})
@XmlRootElement(name = "GetFaxBroadcastReport")
public class GetFaxBroadcastReport {
@XmlElement(name = "UserID", required = true)
protected String userID;
@XmlElement(required = true)
protected String strPIN;
@XmlElement(name = "JobId", required = true)
protected String jobId;
@XmlElement(name = "RecipientType")
protected int recipientType;
@XmlElement(name = "RecipAddress", required = true)
protected String recipAddress;
/**
* 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 jobId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getJobId() {
return jobId;
}
/**
* Sets the value of the jobId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setJobId(String value) {
this.jobId = value;
}
/**
* Gets the value of the recipientType property.
*
*/
public int getRecipientType() {
return recipientType;
}
/**
* Sets the value of the recipientType property.
*
*/
public void setRecipientType(int value) {
this.recipientType = value;
}
/**
* Gets the value of the recipAddress property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRecipAddress() {
return recipAddress;
}
/**
* Sets the value of the recipAddress property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRecipAddress(String value) {
this.recipAddress = value;
}
}