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

org.iso20022.camt052_001.v09.CurrencyExchange5 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:45 PM IST 
//


package org.iso20022.camt052_001.v09;

import java.math.BigDecimal;
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 CurrencyExchange5 complex type. * *

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

 * <complexType name="CurrencyExchange5">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="SrcCcy" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.09}ActiveOrHistoricCurrencyCode"/>
 *         <element name="TrgtCcy" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.09}ActiveOrHistoricCurrencyCode" minOccurs="0"/>
 *         <element name="UnitCcy" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.09}ActiveOrHistoricCurrencyCode" minOccurs="0"/>
 *         <element name="XchgRate" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.09}BaseOneRate"/>
 *         <element name="CtrctId" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.09}Max35Text" minOccurs="0"/>
 *         <element name="QtnDt" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.09}ISODateTime" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CurrencyExchange5", propOrder = { "srcCcy", "trgtCcy", "unitCcy", "xchgRate", "ctrctId", "qtnDt" }) public class CurrencyExchange5 { @XmlElement(name = "SrcCcy", required = true) protected String srcCcy; @XmlElement(name = "TrgtCcy") protected String trgtCcy; @XmlElement(name = "UnitCcy") protected String unitCcy; @XmlElement(name = "XchgRate", required = true) protected BigDecimal xchgRate; @XmlElement(name = "CtrctId") protected String ctrctId; @XmlElement(name = "QtnDt") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar qtnDt; /** * Gets the value of the srcCcy property. * * @return * possible object is * {@link String } * */ public String getSrcCcy() { return srcCcy; } /** * Sets the value of the srcCcy property. * * @param value * allowed object is * {@link String } * */ public void setSrcCcy(String value) { this.srcCcy = value; } /** * Gets the value of the trgtCcy property. * * @return * possible object is * {@link String } * */ public String getTrgtCcy() { return trgtCcy; } /** * Sets the value of the trgtCcy property. * * @param value * allowed object is * {@link String } * */ public void setTrgtCcy(String value) { this.trgtCcy = value; } /** * Gets the value of the unitCcy property. * * @return * possible object is * {@link String } * */ public String getUnitCcy() { return unitCcy; } /** * Sets the value of the unitCcy property. * * @param value * allowed object is * {@link String } * */ public void setUnitCcy(String value) { this.unitCcy = value; } /** * Gets the value of the xchgRate property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getXchgRate() { return xchgRate; } /** * Sets the value of the xchgRate property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setXchgRate(BigDecimal value) { this.xchgRate = value; } /** * Gets the value of the ctrctId property. * * @return * possible object is * {@link String } * */ public String getCtrctId() { return ctrctId; } /** * Sets the value of the ctrctId property. * * @param value * allowed object is * {@link String } * */ public void setCtrctId(String value) { this.ctrctId = value; } /** * Gets the value of the qtnDt property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getQtnDt() { return qtnDt; } /** * Sets the value of the qtnDt property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setQtnDt(XMLGregorianCalendar value) { this.qtnDt = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy