
org.iso20022.camt052_001.v09.TransactionQuantities3Choice 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 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 TransactionQuantities3Choice complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="TransactionQuantities3Choice">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <choice>
* <element name="Qty" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.09}FinancialInstrumentQuantity1Choice"/>
* <element name="OrgnlAndCurFaceAmt" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.09}OriginalAndCurrentQuantities1"/>
* <element name="Prtry" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.09}ProprietaryQuantity1"/>
* </choice>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TransactionQuantities3Choice", propOrder = {
"qty",
"orgnlAndCurFaceAmt",
"prtry"
})
public class TransactionQuantities3Choice {
@XmlElement(name = "Qty")
protected FinancialInstrumentQuantity1Choice qty;
@XmlElement(name = "OrgnlAndCurFaceAmt")
protected OriginalAndCurrentQuantities1 orgnlAndCurFaceAmt;
@XmlElement(name = "Prtry")
protected ProprietaryQuantity1 prtry;
/**
* Gets the value of the qty property.
*
* @return
* possible object is
* {@link FinancialInstrumentQuantity1Choice }
*
*/
public FinancialInstrumentQuantity1Choice getQty() {
return qty;
}
/**
* Sets the value of the qty property.
*
* @param value
* allowed object is
* {@link FinancialInstrumentQuantity1Choice }
*
*/
public void setQty(FinancialInstrumentQuantity1Choice value) {
this.qty = value;
}
/**
* Gets the value of the orgnlAndCurFaceAmt property.
*
* @return
* possible object is
* {@link OriginalAndCurrentQuantities1 }
*
*/
public OriginalAndCurrentQuantities1 getOrgnlAndCurFaceAmt() {
return orgnlAndCurFaceAmt;
}
/**
* Sets the value of the orgnlAndCurFaceAmt property.
*
* @param value
* allowed object is
* {@link OriginalAndCurrentQuantities1 }
*
*/
public void setOrgnlAndCurFaceAmt(OriginalAndCurrentQuantities1 value) {
this.orgnlAndCurFaceAmt = value;
}
/**
* Gets the value of the prtry property.
*
* @return
* possible object is
* {@link ProprietaryQuantity1 }
*
*/
public ProprietaryQuantity1 getPrtry() {
return prtry;
}
/**
* Sets the value of the prtry property.
*
* @param value
* allowed object is
* {@link ProprietaryQuantity1 }
*
*/
public void setPrtry(ProprietaryQuantity1 value) {
this.prtry = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy