org.adorsys.psd2.iso20022.camt053.TotalsPerBankTransactionCode4 Maven / Gradle / Ivy
//
// Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 generiert
// Siehe http://java.sun.com/xml/jaxb
// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren.
// Generiert: 2017.12.22 um 02:39:24 PM CET
//
package org.adorsys.psd2.iso20022.camt053;
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-Klasse für TotalsPerBankTransactionCode4 complex type.
*
*
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <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.053.001.06}Max15NumericText" minOccurs="0"/>
* <element name="Sum" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}DecimalNumber" minOccurs="0"/>
* <element name="TtlNetNtry" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}AmountAndDirection35" minOccurs="0"/>
* <element name="FcstInd" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}TrueFalseIndicator" minOccurs="0"/>
* <element name="BkTxCd" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}BankTransactionCodeStructure4"/>
* <element name="Avlbty" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.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;
/**
* Ruft den Wert der nbOfNtries-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNbOfNtries() {
return nbOfNtries;
}
/**
* Legt den Wert der nbOfNtries-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNbOfNtries(String value) {
this.nbOfNtries = value;
}
/**
* Ruft den Wert der sum-Eigenschaft ab.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getSum() {
return sum;
}
/**
* Legt den Wert der sum-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setSum(BigDecimal value) {
this.sum = value;
}
/**
* Ruft den Wert der ttlNetNtry-Eigenschaft ab.
*
* @return
* possible object is
* {@link AmountAndDirection35 }
*
*/
public AmountAndDirection35 getTtlNetNtry() {
return ttlNetNtry;
}
/**
* Legt den Wert der ttlNetNtry-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link AmountAndDirection35 }
*
*/
public void setTtlNetNtry(AmountAndDirection35 value) {
this.ttlNetNtry = value;
}
/**
* Ruft den Wert der fcstInd-Eigenschaft ab.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isFcstInd() {
return fcstInd;
}
/**
* Legt den Wert der fcstInd-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setFcstInd(Boolean value) {
this.fcstInd = value;
}
/**
* Ruft den Wert der bkTxCd-Eigenschaft ab.
*
* @return
* possible object is
* {@link BankTransactionCodeStructure4 }
*
*/
public BankTransactionCodeStructure4 getBkTxCd() {
return bkTxCd;
}
/**
* Legt den Wert der bkTxCd-Eigenschaft fest.
*
* @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;
}
}