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

cz.abclinuxu.datoveschranky.ws.dm.TIDMessInput 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.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for tIDMessInput complex type. * *

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

 * <complexType name="tIDMessInput">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="dmID" type="{http://isds.czechpoint.cz/v20}tIdDm"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "tIDMessInput", propOrder = { "dmID" }) public class TIDMessInput { @XmlElement(required = true) protected String dmID; /** * Gets the value of the dmID property. * * @return * possible object is * {@link String } * */ public String getDmID() { return dmID; } /** * Sets the value of the dmID property. * * @param value * allowed object is * {@link String } * */ public void setDmID(String value) { this.dmID = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy