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; import javax.xml.datatype.XMLGregorianCalendar; /** * <p>Java class for MandateRelatedInformation4 complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="MandateRelatedInformation4"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="MndtId" type="{urn:sepade:xsd:pain.008.001.01}Max35Text"/> * <element name="DtOfSgntr" type="{urn:sepade:xsd:pain.008.001.01}ISODate"/> * <element name="AmdmntInd" type="{urn:sepade:xsd:pain.008.001.01}TrueFalseIndicator" minOccurs="0"/> * <element name="AmdmntInfDtls" type="{urn:sepade:xsd:pain.008.001.01}AmendmentInformationDetails4" minOccurs="0"/> * <element name="ElctrncSgntr" type="{urn:sepade:xsd:pain.008.001.01}Max1025Text" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MandateRelatedInformation4", namespace = "urn:sepade:xsd:pain.008.001.01", propOrder = { "mndtId", "dtOfSgntr", "amdmntInd", "amdmntInfDtls", "elctrncSgntr" }) public class MandateRelatedInformation4 { @XmlElement(name = "MndtId", namespace = "urn:sepade:xsd:pain.008.001.01", required = true) protected String mndtId; @XmlElement(name = "DtOfSgntr", namespace = "urn:sepade:xsd:pain.008.001.01", required = true) protected XMLGregorianCalendar dtOfSgntr; @XmlElement(name = "AmdmntInd", namespace = "urn:sepade:xsd:pain.008.001.01") protected Boolean amdmntInd; @XmlElement(name = "AmdmntInfDtls", namespace = "urn:sepade:xsd:pain.008.001.01") protected AmendmentInformationDetails4 amdmntInfDtls; @XmlElement(name = "ElctrncSgntr", namespace = "urn:sepade:xsd:pain.008.001.01") protected String elctrncSgntr; /** * 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 AmendmentInformationDetails4 } * */ public AmendmentInformationDetails4 getAmdmntInfDtls() { return amdmntInfDtls; } /** * Sets the value of the amdmntInfDtls property. * * @param value * allowed object is * {@link AmendmentInformationDetails4 } * */ public void setAmdmntInfDtls(AmendmentInformationDetails4 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; } }