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

org.iso20022.camt053_001.v09.DateOrDateTimePeriod1Choice 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:47 PM IST 
//


package org.iso20022.camt053_001.v09;

import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 

Java class for DateOrDateTimePeriod1Choice complex type. * *

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

 * <complexType name="DateOrDateTimePeriod1Choice">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <choice>
 *         <element name="Dt" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.09}DatePeriod2"/>
 *         <element name="DtTm" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.09}DateTimePeriod1"/>
 *       </choice>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DateOrDateTimePeriod1Choice", propOrder = { "dt", "dtTm" }) public class DateOrDateTimePeriod1Choice { @XmlElement(name = "Dt") protected DatePeriod2 dt; @XmlElement(name = "DtTm") protected DateTimePeriod1 dtTm; /** * Gets the value of the dt property. * * @return * possible object is * {@link DatePeriod2 } * */ public DatePeriod2 getDt() { return dt; } /** * Sets the value of the dt property. * * @param value * allowed object is * {@link DatePeriod2 } * */ public void setDt(DatePeriod2 value) { this.dt = value; } /** * Gets the value of the dtTm property. * * @return * possible object is * {@link DateTimePeriod1 } * */ public DateTimePeriod1 getDtTm() { return dtTm; } /** * Sets the value of the dtTm property. * * @param value * allowed object is * {@link DateTimePeriod1 } * */ public void setDtTm(DateTimePeriod1 value) { this.dtTm = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy