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

com.concordfax.ConcordAccount Maven / Gradle / Ivy

The newest version!

package com.concordfax;

import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for ConcordAccount complex type. * *

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

 * <complexType name="ConcordAccount">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="UserId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Pin" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="DefaultCSID" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="SendDeliveryConfirmation" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="DIDList" type="{urn:FaxWS}DIDList" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ConcordAccount", propOrder = { "userId", "pin", "defaultCSID", "sendDeliveryConfirmation", "didList" }) public class ConcordAccount { @XmlElement(name = "UserId") protected String userId; @XmlElement(name = "Pin") protected String pin; @XmlElement(name = "DefaultCSID", required = true) protected String defaultCSID; @XmlElement(name = "SendDeliveryConfirmation") protected int sendDeliveryConfirmation; @XmlElementRef(name = "DIDList", namespace = "urn:FaxWS", type = JAXBElement.class, required = false) protected JAXBElement didList; /** * 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 pin property. * * @return * possible object is * {@link String } * */ public String getPin() { return pin; } /** * Sets the value of the pin property. * * @param value * allowed object is * {@link String } * */ public void setPin(String value) { this.pin = value; } /** * Gets the value of the defaultCSID property. * * @return * possible object is * {@link String } * */ public String getDefaultCSID() { return defaultCSID; } /** * Sets the value of the defaultCSID property. * * @param value * allowed object is * {@link String } * */ public void setDefaultCSID(String value) { this.defaultCSID = value; } /** * Gets the value of the sendDeliveryConfirmation property. * */ public int getSendDeliveryConfirmation() { return sendDeliveryConfirmation; } /** * Sets the value of the sendDeliveryConfirmation property. * */ public void setSendDeliveryConfirmation(int value) { this.sendDeliveryConfirmation = value; } /** * Gets the value of the didList property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link DIDList }{@code >} * */ public JAXBElement getDIDList() { return didList; } /** * Sets the value of the didList property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link DIDList }{@code >} * */ public void setDIDList(JAXBElement value) { this.didList = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy