
org.iso20022.camt053_001.v09.NumberAndSumOfTransactions4 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:47 PM IST
//
package org.iso20022.camt053_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 NumberAndSumOfTransactions4 complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="NumberAndSumOfTransactions4">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="NbOfNtries" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.09}Max15NumericText" minOccurs="0"/>
* <element name="Sum" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.09}DecimalNumber" minOccurs="0"/>
* <element name="TtlNetNtry" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.09}AmountAndDirection35" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "NumberAndSumOfTransactions4", propOrder = {
"nbOfNtries",
"sum",
"ttlNetNtry"
})
public class NumberAndSumOfTransactions4 {
@XmlElement(name = "NbOfNtries")
protected String nbOfNtries;
@XmlElement(name = "Sum")
protected BigDecimal sum;
@XmlElement(name = "TtlNetNtry")
protected AmountAndDirection35 ttlNetNtry;
/**
* Gets the value of the nbOfNtries property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNbOfNtries() {
return nbOfNtries;
}
/**
* Sets the value of the nbOfNtries property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNbOfNtries(String value) {
this.nbOfNtries = value;
}
/**
* Gets the value of the sum property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getSum() {
return sum;
}
/**
* Sets the value of the sum property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setSum(BigDecimal value) {
this.sum = value;
}
/**
* Gets the value of the ttlNetNtry property.
*
* @return
* possible object is
* {@link AmountAndDirection35 }
*
*/
public AmountAndDirection35 getTtlNetNtry() {
return ttlNetNtry;
}
/**
* Sets the value of the ttlNetNtry property.
*
* @param value
* allowed object is
* {@link AmountAndDirection35 }
*
*/
public void setTtlNetNtry(AmountAndDirection35 value) {
this.ttlNetNtry = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy