org.iso20022.pain013_001.v09.AmountOrRate1Choice 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:21 PM IST
//
package org.iso20022.pain013_001.v09;
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 AmountOrRate1Choice complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="AmountOrRate1Choice">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <choice>
* <element name="Amt" type="{urn:iso:std:iso:20022:tech:xsd:pain.013.001.09}ActiveCurrencyAndAmount"/>
* <element name="Rate" type="{urn:iso:std:iso:20022:tech:xsd:pain.013.001.09}PercentageRate"/>
* </choice>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AmountOrRate1Choice", propOrder = {
"amt",
"rate"
})
public class AmountOrRate1Choice {
@XmlElement(name = "Amt")
protected ActiveCurrencyAndAmount amt;
@XmlElement(name = "Rate")
protected BigDecimal rate;
/**
* Gets the value of the amt property.
*
* @return
* possible object is
* {@link ActiveCurrencyAndAmount }
*
*/
public ActiveCurrencyAndAmount getAmt() {
return amt;
}
/**
* Sets the value of the amt property.
*
* @param value
* allowed object is
* {@link ActiveCurrencyAndAmount }
*
*/
public void setAmt(ActiveCurrencyAndAmount value) {
this.amt = value;
}
/**
* Gets the value of the rate property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getRate() {
return rate;
}
/**
* Sets the value of the rate property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setRate(BigDecimal value) {
this.rate = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy