All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.iso20022.camt029_001.v11.MandateRelatedInformation15 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:43 PM IST 
//


package org.iso20022.camt029_001.v11;

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 MandateRelatedInformation15 complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="MandateRelatedInformation15">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="MndtId" type="{urn:iso:std:iso:20022:tech:xsd:camt.029.001.11}Max35Text" minOccurs="0"/>
 *         <element name="DtOfSgntr" type="{urn:iso:std:iso:20022:tech:xsd:camt.029.001.11}ISODate" minOccurs="0"/>
 *         <element name="AmdmntInd" type="{urn:iso:std:iso:20022:tech:xsd:camt.029.001.11}TrueFalseIndicator" minOccurs="0"/>
 *         <element name="AmdmntInfDtls" type="{urn:iso:std:iso:20022:tech:xsd:camt.029.001.11}AmendmentInformationDetails14" minOccurs="0"/>
 *         <element name="ElctrncSgntr" type="{urn:iso:std:iso:20022:tech:xsd:camt.029.001.11}Max1025Text" minOccurs="0"/>
 *         <element name="FrstColltnDt" type="{urn:iso:std:iso:20022:tech:xsd:camt.029.001.11}ISODate" minOccurs="0"/>
 *         <element name="FnlColltnDt" type="{urn:iso:std:iso:20022:tech:xsd:camt.029.001.11}ISODate" minOccurs="0"/>
 *         <element name="Frqcy" type="{urn:iso:std:iso:20022:tech:xsd:camt.029.001.11}Frequency36Choice" minOccurs="0"/>
 *         <element name="Rsn" type="{urn:iso:std:iso:20022:tech:xsd:camt.029.001.11}MandateSetupReason1Choice" minOccurs="0"/>
 *         <element name="TrckgDays" type="{urn:iso:std:iso:20022:tech:xsd:camt.029.001.11}Exact2NumericText" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MandateRelatedInformation15", propOrder = { "mndtId", "dtOfSgntr", "amdmntInd", "amdmntInfDtls", "elctrncSgntr", "frstColltnDt", "fnlColltnDt", "frqcy", "rsn", "trckgDays" }) public class MandateRelatedInformation15 { @XmlElement(name = "MndtId") protected String mndtId; @XmlElement(name = "DtOfSgntr") @XmlSchemaType(name = "date") protected XMLGregorianCalendar dtOfSgntr; @XmlElement(name = "AmdmntInd") protected Boolean amdmntInd; @XmlElement(name = "AmdmntInfDtls") protected AmendmentInformationDetails14 amdmntInfDtls; @XmlElement(name = "ElctrncSgntr") protected String elctrncSgntr; @XmlElement(name = "FrstColltnDt") @XmlSchemaType(name = "date") protected XMLGregorianCalendar frstColltnDt; @XmlElement(name = "FnlColltnDt") @XmlSchemaType(name = "date") protected XMLGregorianCalendar fnlColltnDt; @XmlElement(name = "Frqcy") protected Frequency36Choice frqcy; @XmlElement(name = "Rsn") protected MandateSetupReason1Choice rsn; @XmlElement(name = "TrckgDays") protected String trckgDays; /** * 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 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 amdmntInd property. * * @return * possible object is * {@link Boolean } * */ public Boolean isAmdmntInd() { return amdmntInd; } /** * Sets the value of the amdmntInd property. * * @param value * allowed object is * {@link Boolean } * */ public void setAmdmntInd(Boolean value) { this.amdmntInd = value; } /** * Gets the value of the amdmntInfDtls property. * * @return * possible object is * {@link AmendmentInformationDetails14 } * */ public AmendmentInformationDetails14 getAmdmntInfDtls() { return amdmntInfDtls; } /** * Sets the value of the amdmntInfDtls property. * * @param value * allowed object is * {@link AmendmentInformationDetails14 } * */ public void setAmdmntInfDtls(AmendmentInformationDetails14 value) { this.amdmntInfDtls = value; } /** * Gets the value of the elctrncSgntr property. * * @return * possible object is * {@link String } * */ public String getElctrncSgntr() { return elctrncSgntr; } /** * Sets the value of the elctrncSgntr property. * * @param value * allowed object is * {@link String } * */ public void setElctrncSgntr(String value) { this.elctrncSgntr = value; } /** * Gets the value of the frstColltnDt property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getFrstColltnDt() { return frstColltnDt; } /** * Sets the value of the frstColltnDt property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setFrstColltnDt(XMLGregorianCalendar value) { this.frstColltnDt = value; } /** * Gets the value of the fnlColltnDt property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getFnlColltnDt() { return fnlColltnDt; } /** * Sets the value of the fnlColltnDt property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setFnlColltnDt(XMLGregorianCalendar value) { this.fnlColltnDt = 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; } /** * Gets the value of the trckgDays property. * * @return * possible object is * {@link String } * */ public String getTrckgDays() { return trckgDays; } /** * Sets the value of the trckgDays property. * * @param value * allowed object is * {@link String } * */ public void setTrckgDays(String value) { this.trckgDays = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy