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

org.iso20022.pacs004_001.v11.ActiveCurrencyAndAmount 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 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;


/**
 * A number of monetary units specified in an active currency where the unit of currency is explicit and compliant with ISO 4217.
 * 
 * 

Java class for ActiveCurrencyAndAmount complex type. * *

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

 * <complexType name="ActiveCurrencyAndAmount">
 *   <simpleContent>
 *     <extension base="<urn:iso:std:iso:20022:tech:xsd:pacs.004.001.11>ActiveCurrencyAndAmount_SimpleType">
 *       <attribute name="Ccy" use="required" type="{urn:iso:std:iso:20022:tech:xsd:pacs.004.001.11}ActiveCurrencyCode" />
 *     </extension>
 *   </simpleContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ActiveCurrencyAndAmount", propOrder = { "value" }) public class ActiveCurrencyAndAmount { @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