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