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

org.iso20022.pacs004_001.v11.SettlementTimeRequest2 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:59 PM IST 
//


package org.iso20022.pacs004_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;


/**
 * Provides information on the requested settlement time(s) of the payment instruction.
 * 
 * 

Java class for SettlementTimeRequest2 complex type. * *

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

 * <complexType name="SettlementTimeRequest2">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="CLSTm" type="{urn:iso:std:iso:20022:tech:xsd:pacs.004.001.11}ISOTime" minOccurs="0"/>
 *         <element name="TillTm" type="{urn:iso:std:iso:20022:tech:xsd:pacs.004.001.11}ISOTime" minOccurs="0"/>
 *         <element name="FrTm" type="{urn:iso:std:iso:20022:tech:xsd:pacs.004.001.11}ISOTime" minOccurs="0"/>
 *         <element name="RjctTm" type="{urn:iso:std:iso:20022:tech:xsd:pacs.004.001.11}ISOTime" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SettlementTimeRequest2", propOrder = { "clsTm", "tillTm", "frTm", "rjctTm" }) public class SettlementTimeRequest2 { @XmlElement(name = "CLSTm") @XmlSchemaType(name = "time") protected XMLGregorianCalendar clsTm; @XmlElement(name = "TillTm") @XmlSchemaType(name = "time") protected XMLGregorianCalendar tillTm; @XmlElement(name = "FrTm") @XmlSchemaType(name = "time") protected XMLGregorianCalendar frTm; @XmlElement(name = "RjctTm") @XmlSchemaType(name = "time") protected XMLGregorianCalendar rjctTm; /** * Gets the value of the clsTm property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getCLSTm() { return clsTm; } /** * Sets the value of the clsTm property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setCLSTm(XMLGregorianCalendar value) { this.clsTm = value; } /** * Gets the value of the tillTm property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getTillTm() { return tillTm; } /** * Sets the value of the tillTm property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setTillTm(XMLGregorianCalendar value) { this.tillTm = value; } /** * Gets the value of the frTm property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getFrTm() { return frTm; } /** * Sets the value of the frTm property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setFrTm(XMLGregorianCalendar value) { this.frTm = value; } /** * Gets the value of the rjctTm property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getRjctTm() { return rjctTm; } /** * Sets the value of the rjctTm property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setRjctTm(XMLGregorianCalendar value) { this.rjctTm = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy