
org.iso20022.pacs010_001.v05.SettlementDateTimeIndication1 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:05:09 PM IST
//
package org.iso20022.pacs010_001.v05;
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;
/**
* Information on the occurred settlement time(s) of the payment transaction.
*
* Java class for SettlementDateTimeIndication1 complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="SettlementDateTimeIndication1">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="DbtDtTm" type="{urn:iso:std:iso:20022:tech:xsd:pacs.010.001.05}ISODateTime" minOccurs="0"/>
* <element name="CdtDtTm" type="{urn:iso:std:iso:20022:tech:xsd:pacs.010.001.05}ISODateTime" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SettlementDateTimeIndication1", propOrder = {
"dbtDtTm",
"cdtDtTm"
})
public class SettlementDateTimeIndication1 {
@XmlElement(name = "DbtDtTm")
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dbtDtTm;
@XmlElement(name = "CdtDtTm")
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar cdtDtTm;
/**
* Gets the value of the dbtDtTm property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getDbtDtTm() {
return dbtDtTm;
}
/**
* Sets the value of the dbtDtTm property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setDbtDtTm(XMLGregorianCalendar value) {
this.dbtDtTm = value;
}
/**
* Gets the value of the cdtDtTm property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getCdtDtTm() {
return cdtDtTm;
}
/**
* Sets the value of the cdtDtTm property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setCdtDtTm(XMLGregorianCalendar value) {
this.cdtDtTm = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy