package org.kapott.hbci.sepa.jaxb.pain_008_002_01; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for PartySDD complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="PartySDD"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="PrvtId" type="{urn:swift:xsd:$pain.008.002.01}PersonIdentificationSDD2"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PartySDD", namespace = "urn:swift:xsd:$pain.008.002.01", propOrder = { "prvtId" }) public class PartySDD { @XmlElement(name = "PrvtId", namespace = "urn:swift:xsd:$pain.008.002.01", required = true) protected PersonIdentificationSDD2 prvtId; /** * Gets the value of the prvtId property. * * @return * possible object is * {@link PersonIdentificationSDD2 } * */ public PersonIdentificationSDD2 getPrvtId() { return prvtId; } /** * Sets the value of the prvtId property. * * @param value * allowed object is * {@link PersonIdentificationSDD2 } * */ public void setPrvtId(PersonIdentificationSDD2 value) { this.prvtId = value; } }