
org.iso20022.camt029_001.v11.NumberOfTransactionsPerStatus1 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:43 PM IST
//
package org.iso20022.camt029_001.v11;
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.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for NumberOfTransactionsPerStatus1 complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="NumberOfTransactionsPerStatus1">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="DtldNbOfTxs" type="{urn:iso:std:iso:20022:tech:xsd:camt.029.001.11}Max15NumericText"/>
* <element name="DtldSts" type="{urn:iso:std:iso:20022:tech:xsd:camt.029.001.11}TransactionIndividualStatus1Code"/>
* <element name="DtldCtrlSum" type="{urn:iso:std:iso:20022:tech:xsd:camt.029.001.11}DecimalNumber" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "NumberOfTransactionsPerStatus1", propOrder = {
"dtldNbOfTxs",
"dtldSts",
"dtldCtrlSum"
})
public class NumberOfTransactionsPerStatus1 {
@XmlElement(name = "DtldNbOfTxs", required = true)
protected String dtldNbOfTxs;
@XmlElement(name = "DtldSts", required = true)
@XmlSchemaType(name = "string")
protected TransactionIndividualStatus1Code dtldSts;
@XmlElement(name = "DtldCtrlSum")
protected BigDecimal dtldCtrlSum;
/**
* Gets the value of the dtldNbOfTxs property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDtldNbOfTxs() {
return dtldNbOfTxs;
}
/**
* Sets the value of the dtldNbOfTxs property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDtldNbOfTxs(String value) {
this.dtldNbOfTxs = value;
}
/**
* Gets the value of the dtldSts property.
*
* @return
* possible object is
* {@link TransactionIndividualStatus1Code }
*
*/
public TransactionIndividualStatus1Code getDtldSts() {
return dtldSts;
}
/**
* Sets the value of the dtldSts property.
*
* @param value
* allowed object is
* {@link TransactionIndividualStatus1Code }
*
*/
public void setDtldSts(TransactionIndividualStatus1Code value) {
this.dtldSts = value;
}
/**
* Gets the value of the dtldCtrlSum property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getDtldCtrlSum() {
return dtldCtrlSum;
}
/**
* Sets the value of the dtldCtrlSum property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setDtldCtrlSum(BigDecimal value) {
this.dtldCtrlSum = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy