org.iso20022.camt054_001.v09.ActiveOrHistoricCurrencyAnd13DecimalAmount 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:50 PM IST
//
package org.iso20022.camt054_001.v09;
import java.math.BigDecimal;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.XmlValue;
/**
* Java class for ActiveOrHistoricCurrencyAnd13DecimalAmount complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ActiveOrHistoricCurrencyAnd13DecimalAmount">
* <simpleContent>
* <extension base="<urn:iso:std:iso:20022:tech:xsd:camt.054.001.09>ActiveOrHistoricCurrencyAnd13DecimalAmount_SimpleType">
* <attribute name="Ccy" use="required" type="{urn:iso:std:iso:20022:tech:xsd:camt.054.001.09}ActiveOrHistoricCurrencyCode" />
* </extension>
* </simpleContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ActiveOrHistoricCurrencyAnd13DecimalAmount", propOrder = {
"value"
})
public class ActiveOrHistoricCurrencyAnd13DecimalAmount {
@XmlValue
protected BigDecimal value;
@XmlAttribute(name = "Ccy", required = true)
protected String ccy;
/**
* Gets the value of the value property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getValue() {
return value;
}
/**
* Sets the value of the value property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setValue(BigDecimal value) {
this.value = value;
}
/**
* Gets the value of the ccy property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCcy() {
return ccy;
}
/**
* Sets the value of the ccy property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCcy(String value) {
this.ccy = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy