org.iso20022.camt056_001.v10.CreditTransferMandateData1 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:53 PM IST
//
package org.iso20022.camt056_001.v10;
import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for CreditTransferMandateData1 complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CreditTransferMandateData1">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="MndtId" type="{urn:iso:std:iso:20022:tech:xsd:camt.056.001.10}Max35Text" minOccurs="0"/>
* <element name="Tp" type="{urn:iso:std:iso:20022:tech:xsd:camt.056.001.10}MandateTypeInformation2" minOccurs="0"/>
* <element name="DtOfSgntr" type="{urn:iso:std:iso:20022:tech:xsd:camt.056.001.10}ISODate" minOccurs="0"/>
* <element name="DtOfVrfctn" type="{urn:iso:std:iso:20022:tech:xsd:camt.056.001.10}ISODateTime" minOccurs="0"/>
* <element name="ElctrncSgntr" type="{urn:iso:std:iso:20022:tech:xsd:camt.056.001.10}Max10KBinary" minOccurs="0"/>
* <element name="FrstPmtDt" type="{urn:iso:std:iso:20022:tech:xsd:camt.056.001.10}ISODate" minOccurs="0"/>
* <element name="FnlPmtDt" type="{urn:iso:std:iso:20022:tech:xsd:camt.056.001.10}ISODate" minOccurs="0"/>
* <element name="Frqcy" type="{urn:iso:std:iso:20022:tech:xsd:camt.056.001.10}Frequency36Choice" minOccurs="0"/>
* <element name="Rsn" type="{urn:iso:std:iso:20022:tech:xsd:camt.056.001.10}MandateSetupReason1Choice" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CreditTransferMandateData1", propOrder = {
"mndtId",
"tp",
"dtOfSgntr",
"dtOfVrfctn",
"elctrncSgntr",
"frstPmtDt",
"fnlPmtDt",
"frqcy",
"rsn"
})
public class CreditTransferMandateData1 {
@XmlElement(name = "MndtId")
protected String mndtId;
@XmlElement(name = "Tp")
protected MandateTypeInformation2 tp;
@XmlElement(name = "DtOfSgntr")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dtOfSgntr;
@XmlElement(name = "DtOfVrfctn")
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dtOfVrfctn;
@XmlElement(name = "ElctrncSgntr")
protected byte[] elctrncSgntr;
@XmlElement(name = "FrstPmtDt")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar frstPmtDt;
@XmlElement(name = "FnlPmtDt")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar fnlPmtDt;
@XmlElement(name = "Frqcy")
protected Frequency36Choice frqcy;
@XmlElement(name = "Rsn")
protected MandateSetupReason1Choice rsn;
/**
* Gets the value of the mndtId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMndtId() {
return mndtId;
}
/**
* Sets the value of the mndtId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMndtId(String value) {
this.mndtId = value;
}
/**
* Gets the value of the tp property.
*
* @return
* possible object is
* {@link MandateTypeInformation2 }
*
*/
public MandateTypeInformation2 getTp() {
return tp;
}
/**
* Sets the value of the tp property.
*
* @param value
* allowed object is
* {@link MandateTypeInformation2 }
*
*/
public void setTp(MandateTypeInformation2 value) {
this.tp = value;
}
/**
* Gets the value of the dtOfSgntr property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getDtOfSgntr() {
return dtOfSgntr;
}
/**
* Sets the value of the dtOfSgntr property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setDtOfSgntr(XMLGregorianCalendar value) {
this.dtOfSgntr = value;
}
/**
* Gets the value of the dtOfVrfctn property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getDtOfVrfctn() {
return dtOfVrfctn;
}
/**
* Sets the value of the dtOfVrfctn property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setDtOfVrfctn(XMLGregorianCalendar value) {
this.dtOfVrfctn = value;
}
/**
* Gets the value of the elctrncSgntr property.
*
* @return
* possible object is
* byte[]
*/
public byte[] getElctrncSgntr() {
return elctrncSgntr;
}
/**
* Sets the value of the elctrncSgntr property.
*
* @param value
* allowed object is
* byte[]
*/
public void setElctrncSgntr(byte[] value) {
this.elctrncSgntr = value;
}
/**
* Gets the value of the frstPmtDt property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getFrstPmtDt() {
return frstPmtDt;
}
/**
* Sets the value of the frstPmtDt property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setFrstPmtDt(XMLGregorianCalendar value) {
this.frstPmtDt = value;
}
/**
* Gets the value of the fnlPmtDt property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getFnlPmtDt() {
return fnlPmtDt;
}
/**
* Sets the value of the fnlPmtDt property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setFnlPmtDt(XMLGregorianCalendar value) {
this.fnlPmtDt = value;
}
/**
* Gets the value of the frqcy property.
*
* @return
* possible object is
* {@link Frequency36Choice }
*
*/
public Frequency36Choice getFrqcy() {
return frqcy;
}
/**
* Sets the value of the frqcy property.
*
* @param value
* allowed object is
* {@link Frequency36Choice }
*
*/
public void setFrqcy(Frequency36Choice value) {
this.frqcy = value;
}
/**
* Gets the value of the rsn property.
*
* @return
* possible object is
* {@link MandateSetupReason1Choice }
*
*/
public MandateSetupReason1Choice getRsn() {
return rsn;
}
/**
* Sets the value of the rsn property.
*
* @param value
* allowed object is
* {@link MandateSetupReason1Choice }
*
*/
public void setRsn(MandateSetupReason1Choice value) {
this.rsn = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy