package org.kapott.hbci.sepa.jaxb.pain_001_002_02; 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 PartyIdentificationSCT2 complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="PartyIdentificationSCT2"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="Nm" type="{urn:swift:xsd:$pain.001.002.02}Max70Text"/> * <element name="PstlAdr" type="{urn:swift:xsd:$pain.001.002.02}PostalAddressSCT" minOccurs="0"/> * <element name="Id" type="{urn:swift:xsd:$pain.001.002.02}PartySCTChoice" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PartyIdentificationSCT2", namespace = "urn:swift:xsd:$pain.001.002.02", propOrder = { "nm", "pstlAdr", "id" }) public class PartyIdentificationSCT2 { @XmlElement(name = "Nm", namespace = "urn:swift:xsd:$pain.001.002.02", required = true) protected String nm; @XmlElement(name = "PstlAdr", namespace = "urn:swift:xsd:$pain.001.002.02") protected PostalAddressSCT pstlAdr; @XmlElement(name = "Id", namespace = "urn:swift:xsd:$pain.001.002.02") protected PartySCTChoice id; /** * Gets the value of the nm property. * * @return * possible object is * {@link String } * */ public String getNm() { return nm; } /** * Sets the value of the nm property. * * @param value * allowed object is * {@link String } * */ public void setNm(String value) { this.nm = value; } /** * Gets the value of the pstlAdr property. * * @return * possible object is * {@link PostalAddressSCT } * */ public PostalAddressSCT getPstlAdr() { return pstlAdr; } /** * Sets the value of the pstlAdr property. * * @param value * allowed object is * {@link PostalAddressSCT } * */ public void setPstlAdr(PostalAddressSCT value) { this.pstlAdr = value; } /** * Gets the value of the id property. * * @return * possible object is * {@link PartySCTChoice } * */ public PartySCTChoice getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link PartySCTChoice } * */ public void setId(PartySCTChoice value) { this.id = value; } }