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 AmendmentInformationDetailsSDD complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="AmendmentInformationDetailsSDD"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="OrgnlMndtId" type="{urn:swift:xsd:$pain.008.002.01}RestrictedIdentification1" minOccurs="0"/> * <element name="OrgnlCdtrSchmeId" type="{urn:swift:xsd:$pain.008.002.01}PartyIdentificationSDD5" minOccurs="0"/> * <element name="OrgnlDbtrAcct" type="{urn:swift:xsd:$pain.008.002.01}CashAccountSDD2" minOccurs="0"/> * <element name="OrgnlDbtrAgt" type="{urn:swift:xsd:$pain.008.002.01}BranchAndFinancialInstitutionIdentificationSDD2" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AmendmentInformationDetailsSDD", namespace = "urn:swift:xsd:$pain.008.002.01", propOrder = { "orgnlMndtId", "orgnlCdtrSchmeId", "orgnlDbtrAcct", "orgnlDbtrAgt" }) public class AmendmentInformationDetailsSDD { @XmlElement(name = "OrgnlMndtId", namespace = "urn:swift:xsd:$pain.008.002.01") protected String orgnlMndtId; @XmlElement(name = "OrgnlCdtrSchmeId", namespace = "urn:swift:xsd:$pain.008.002.01") protected PartyIdentificationSDD5 orgnlCdtrSchmeId; @XmlElement(name = "OrgnlDbtrAcct", namespace = "urn:swift:xsd:$pain.008.002.01") protected CashAccountSDD2 orgnlDbtrAcct; @XmlElement(name = "OrgnlDbtrAgt", namespace = "urn:swift:xsd:$pain.008.002.01") protected BranchAndFinancialInstitutionIdentificationSDD2 orgnlDbtrAgt; /** * Gets the value of the orgnlMndtId property. * * @return * possible object is * {@link String } * */ public String getOrgnlMndtId() { return orgnlMndtId; } /** * Sets the value of the orgnlMndtId property. * * @param value * allowed object is * {@link String } * */ public void setOrgnlMndtId(String value) { this.orgnlMndtId = value; } /** * Gets the value of the orgnlCdtrSchmeId property. * * @return * possible object is * {@link PartyIdentificationSDD5 } * */ public PartyIdentificationSDD5 getOrgnlCdtrSchmeId() { return orgnlCdtrSchmeId; } /** * Sets the value of the orgnlCdtrSchmeId property. * * @param value * allowed object is * {@link PartyIdentificationSDD5 } * */ public void setOrgnlCdtrSchmeId(PartyIdentificationSDD5 value) { this.orgnlCdtrSchmeId = value; } /** * Gets the value of the orgnlDbtrAcct property. * * @return * possible object is * {@link CashAccountSDD2 } * */ public CashAccountSDD2 getOrgnlDbtrAcct() { return orgnlDbtrAcct; } /** * Sets the value of the orgnlDbtrAcct property. * * @param value * allowed object is * {@link CashAccountSDD2 } * */ public void setOrgnlDbtrAcct(CashAccountSDD2 value) { this.orgnlDbtrAcct = value; } /** * Gets the value of the orgnlDbtrAgt property. * * @return * possible object is * {@link BranchAndFinancialInstitutionIdentificationSDD2 } * */ public BranchAndFinancialInstitutionIdentificationSDD2 getOrgnlDbtrAgt() { return orgnlDbtrAgt; } /** * Sets the value of the orgnlDbtrAgt property. * * @param value * allowed object is * {@link BranchAndFinancialInstitutionIdentificationSDD2 } * */ public void setOrgnlDbtrAgt(BranchAndFinancialInstitutionIdentificationSDD2 value) { this.orgnlDbtrAgt = value; } }