org.iso20022.pain002_001.v12.CurrencyExchange13 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:14 PM IST
//
package org.iso20022.pain002_001.v12;
import java.math.BigDecimal;
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 CurrencyExchange13 complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CurrencyExchange13">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="SrcCcy" type="{urn:iso:std:iso:20022:tech:xsd:pain.002.001.12}ActiveCurrencyCode"/>
* <element name="TrgtCcy" type="{urn:iso:std:iso:20022:tech:xsd:pain.002.001.12}ActiveCurrencyCode"/>
* <element name="XchgRate" type="{urn:iso:std:iso:20022:tech:xsd:pain.002.001.12}BaseOneRate"/>
* <element name="UnitCcy" type="{urn:iso:std:iso:20022:tech:xsd:pain.002.001.12}ActiveCurrencyCode" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CurrencyExchange13", propOrder = {
"srcCcy",
"trgtCcy",
"xchgRate",
"unitCcy"
})
public class CurrencyExchange13 {
@XmlElement(name = "SrcCcy", required = true)
protected String srcCcy;
@XmlElement(name = "TrgtCcy", required = true)
protected String trgtCcy;
@XmlElement(name = "XchgRate", required = true)
protected BigDecimal xchgRate;
@XmlElement(name = "UnitCcy")
protected String unitCcy;
/**
* 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 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 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy