
org.iso20022.camt052_001.v09.FinancialInstrumentQuantity1Choice 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 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 FinancialInstrumentQuantity1Choice complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="FinancialInstrumentQuantity1Choice">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <choice>
* <element name="Unit" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.09}DecimalNumber"/>
* <element name="FaceAmt" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.09}ImpliedCurrencyAndAmount"/>
* <element name="AmtsdVal" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.09}ImpliedCurrencyAndAmount"/>
* </choice>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FinancialInstrumentQuantity1Choice", propOrder = {
"unit",
"faceAmt",
"amtsdVal"
})
public class FinancialInstrumentQuantity1Choice {
@XmlElement(name = "Unit")
protected BigDecimal unit;
@XmlElement(name = "FaceAmt")
protected BigDecimal faceAmt;
@XmlElement(name = "AmtsdVal")
protected BigDecimal amtsdVal;
/**
* Gets the value of the unit property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getUnit() {
return unit;
}
/**
* Sets the value of the unit property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setUnit(BigDecimal value) {
this.unit = value;
}
/**
* Gets the value of the faceAmt property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getFaceAmt() {
return faceAmt;
}
/**
* Sets the value of the faceAmt property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setFaceAmt(BigDecimal value) {
this.faceAmt = value;
}
/**
* Gets the value of the amtsdVal property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getAmtsdVal() {
return amtsdVal;
}
/**
* Sets the value of the amtsdVal property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setAmtsdVal(BigDecimal value) {
this.amtsdVal = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy