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

org.adorsys.psd2.iso20022.camt052.TotalsPerBankTransactionCode4 Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2018.03.27 at 07:28:42 AM CEST 
//


package org.adorsys.psd2.iso20022.camt052;

import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for TotalsPerBankTransactionCode4 complex type. * *

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

 * <complexType name="TotalsPerBankTransactionCode4">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="NbOfNtries" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}Max15NumericText" minOccurs="0"/>
 *         <element name="Sum" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}DecimalNumber" minOccurs="0"/>
 *         <element name="TtlNetNtry" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}AmountAndDirection35" minOccurs="0"/>
 *         <element name="FcstInd" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}TrueFalseIndicator" minOccurs="0"/>
 *         <element name="BkTxCd" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}BankTransactionCodeStructure4"/>
 *         <element name="Avlbty" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}CashAvailability1" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TotalsPerBankTransactionCode4", propOrder = { "nbOfNtries", "sum", "ttlNetNtry", "fcstInd", "bkTxCd", "avlbty" }) public class TotalsPerBankTransactionCode4 { @XmlElement(name = "NbOfNtries") protected String nbOfNtries; @XmlElement(name = "Sum") protected BigDecimal sum; @XmlElement(name = "TtlNetNtry") protected AmountAndDirection35 ttlNetNtry; @XmlElement(name = "FcstInd") protected Boolean fcstInd; @XmlElement(name = "BkTxCd", required = true) protected BankTransactionCodeStructure4 bkTxCd; @XmlElement(name = "Avlbty") protected List avlbty; /** * 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; } /** * Gets the value of the fcstInd property. * * @return * possible object is * {@link Boolean } * */ public Boolean isFcstInd() { return fcstInd; } /** * Sets the value of the fcstInd property. * * @param value * allowed object is * {@link Boolean } * */ public void setFcstInd(Boolean value) { this.fcstInd = value; } /** * Gets the value of the bkTxCd property. * * @return * possible object is * {@link BankTransactionCodeStructure4 } * */ public BankTransactionCodeStructure4 getBkTxCd() { return bkTxCd; } /** * Sets the value of the bkTxCd property. * * @param value * allowed object is * {@link BankTransactionCodeStructure4 } * */ public void setBkTxCd(BankTransactionCodeStructure4 value) { this.bkTxCd = value; } /** * Gets the value of the avlbty property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the avlbty property. * *

* For example, to add a new item, do as follows: *

     *    getAvlbty().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link CashAvailability1 } * * */ public List getAvlbty() { if (avlbty == null) { avlbty = new ArrayList(); } return this.avlbty; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy