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

cz.abclinuxu.datoveschranky.ws.dm.TMultipleMessageCreateInput Maven / Gradle / Ivy

The newest version!

package cz.abclinuxu.datoveschranky.ws.dm;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for tMultipleMessageCreateInput complex type. * *

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

 * <complexType name="tMultipleMessageCreateInput">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="dmRecipients" type="{http://isds.czechpoint.cz/v20}tMultipleMessageRecipients"/>
 *         <element name="dmEnvelope">
 *           <complexType>
 *             <complexContent>
 *               <extension base="{http://isds.czechpoint.cz/v20}tMultipleMessageEnvelopeSub">
 *                 <attribute name="dmType" type="{http://isds.czechpoint.cz/v20}tDmType" />
 *               </extension>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="dmFiles" type="{http://isds.czechpoint.cz/v20}tFilesArray"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "tMultipleMessageCreateInput", propOrder = { "dmRecipients", "dmEnvelope", "dmFiles" }) public class TMultipleMessageCreateInput { @XmlElement(required = true) protected TMultipleMessageRecipients dmRecipients; @XmlElement(required = true) protected TMultipleMessageCreateInput.DmEnvelope dmEnvelope; @XmlElement(required = true) protected TFilesArray dmFiles; /** * Gets the value of the dmRecipients property. * * @return * possible object is * {@link TMultipleMessageRecipients } * */ public TMultipleMessageRecipients getDmRecipients() { return dmRecipients; } /** * Sets the value of the dmRecipients property. * * @param value * allowed object is * {@link TMultipleMessageRecipients } * */ public void setDmRecipients(TMultipleMessageRecipients value) { this.dmRecipients = value; } /** * Gets the value of the dmEnvelope property. * * @return * possible object is * {@link TMultipleMessageCreateInput.DmEnvelope } * */ public TMultipleMessageCreateInput.DmEnvelope getDmEnvelope() { return dmEnvelope; } /** * Sets the value of the dmEnvelope property. * * @param value * allowed object is * {@link TMultipleMessageCreateInput.DmEnvelope } * */ public void setDmEnvelope(TMultipleMessageCreateInput.DmEnvelope value) { this.dmEnvelope = value; } /** * Gets the value of the dmFiles property. * * @return * possible object is * {@link TFilesArray } * */ public TFilesArray getDmFiles() { return dmFiles; } /** * Sets the value of the dmFiles property. * * @param value * allowed object is * {@link TFilesArray } * */ public void setDmFiles(TFilesArray value) { this.dmFiles = value; } /** *

Java class for anonymous complex type. * *

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

     * <complexType>
     *   <complexContent>
     *     <extension base="{http://isds.czechpoint.cz/v20}tMultipleMessageEnvelopeSub">
     *       <attribute name="dmType" type="{http://isds.czechpoint.cz/v20}tDmType" />
     *     </extension>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class DmEnvelope extends TMultipleMessageEnvelopeSub { @XmlAttribute(name = "dmType") protected String dmType; /** * Gets the value of the dmType property. * * @return * possible object is * {@link String } * */ public String getDmType() { return dmType; } /** * Sets the value of the dmType property. * * @param value * allowed object is * {@link String } * */ public void setDmType(String value) { this.dmType = value; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy