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

cz.abclinuxu.datoveschranky.ws.dm.TEraseMessageIntput 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 tEraseMessageIntput complex type. * *

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

 * <complexType name="tEraseMessageIntput">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="dmID" type="{http://isds.czechpoint.cz/v20}tIdDm"/>
 *         <element name="dmIncoming" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "tEraseMessageIntput", propOrder = { "dmID", "dmIncoming" }) public class TEraseMessageIntput { @XmlElement(required = true) protected String dmID; protected boolean dmIncoming; /** * 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; } /** * Gets the value of the dmIncoming property. * */ public boolean isDmIncoming() { return dmIncoming; } /** * Sets the value of the dmIncoming property. * */ public void setDmIncoming(boolean value) { this.dmIncoming = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy