All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.iso20022.pain014_001.v09.NumberOfTransactionsPerStatus5 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:23 PM IST 
//


package org.iso20022.pain014_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 NumberOfTransactionsPerStatus5 complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="NumberOfTransactionsPerStatus5">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="DtldNbOfTxs" type="{urn:iso:std:iso:20022:tech:xsd:pain.014.001.09}Max15NumericText"/>
 *         <element name="DtldSts" type="{urn:iso:std:iso:20022:tech:xsd:pain.014.001.09}ExternalPaymentTransactionStatus1Code"/>
 *         <element name="DtldCtrlSum" type="{urn:iso:std:iso:20022:tech:xsd:pain.014.001.09}DecimalNumber" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NumberOfTransactionsPerStatus5", propOrder = { "dtldNbOfTxs", "dtldSts", "dtldCtrlSum" }) public class NumberOfTransactionsPerStatus5 { @XmlElement(name = "DtldNbOfTxs", required = true) protected String dtldNbOfTxs; @XmlElement(name = "DtldSts", required = true) protected String 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 String } * */ public String getDtldSts() { return dtldSts; } /** * Sets the value of the dtldSts property. * * @param value * allowed object is * {@link String } * */ public void setDtldSts(String 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