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

cz.abclinuxu.datoveschranky.ws.db.TPDZInfoInput Maven / Gradle / Ivy

The newest version!

package cz.abclinuxu.datoveschranky.ws.db;

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 tPDZInfoInput complex type. * *

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy