
org.iso20022.pacs002_001.v12.MandateRelatedData2Choice Maven / Gradle / Ivy
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.1
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2021.09.21 at 06:04:55 PM IST
//
package org.iso20022.pacs002_001.v12;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Choice of mandate related information.
*
* Java class for MandateRelatedData2Choice complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="MandateRelatedData2Choice">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <choice>
* <element name="DrctDbtMndt" type="{urn:iso:std:iso:20022:tech:xsd:pacs.002.001.12}MandateRelatedInformation15" minOccurs="0"/>
* <element name="CdtTrfMndt" type="{urn:iso:std:iso:20022:tech:xsd:pacs.002.001.12}CreditTransferMandateData1" minOccurs="0"/>
* </choice>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "MandateRelatedData2Choice", propOrder = {
"drctDbtMndt",
"cdtTrfMndt"
})
public class MandateRelatedData2Choice {
@XmlElement(name = "DrctDbtMndt")
protected MandateRelatedInformation15 drctDbtMndt;
@XmlElement(name = "CdtTrfMndt")
protected CreditTransferMandateData1 cdtTrfMndt;
/**
* Gets the value of the drctDbtMndt property.
*
* @return
* possible object is
* {@link MandateRelatedInformation15 }
*
*/
public MandateRelatedInformation15 getDrctDbtMndt() {
return drctDbtMndt;
}
/**
* Sets the value of the drctDbtMndt property.
*
* @param value
* allowed object is
* {@link MandateRelatedInformation15 }
*
*/
public void setDrctDbtMndt(MandateRelatedInformation15 value) {
this.drctDbtMndt = value;
}
/**
* Gets the value of the cdtTrfMndt property.
*
* @return
* possible object is
* {@link CreditTransferMandateData1 }
*
*/
public CreditTransferMandateData1 getCdtTrfMndt() {
return cdtTrfMndt;
}
/**
* Sets the value of the cdtTrfMndt property.
*
* @param value
* allowed object is
* {@link CreditTransferMandateData1 }
*
*/
public void setCdtTrfMndt(CreditTransferMandateData1 value) {
this.cdtTrfMndt = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy