org.adorsys.psd2.iso20022.camt052.CashBalance7 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.camt052;
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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* Java-Klasse für CashBalance7 complex type.
*
*
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <complexType name="CashBalance7">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Tp" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}BalanceType12"/>
* <element name="CdtLine" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}CreditLine2" minOccurs="0"/>
* <element name="Amt" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}ActiveOrHistoricCurrencyAndAmount"/>
* <element name="CdtDbtInd" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}CreditDebitCode"/>
* <element name="Dt" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}DateAndDateTimeChoice"/>
* <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 = "CashBalance7", propOrder = {
"tp",
"cdtLine",
"amt",
"cdtDbtInd",
"dt",
"avlbty"
})
public class CashBalance7 {
@XmlElement(name = "Tp", required = true)
protected BalanceType12 tp;
@XmlElement(name = "CdtLine")
protected CreditLine2 cdtLine;
@XmlElement(name = "Amt", required = true)
protected ActiveOrHistoricCurrencyAndAmount amt;
@XmlElement(name = "CdtDbtInd", required = true)
@XmlSchemaType(name = "string")
protected CreditDebitCode cdtDbtInd;
@XmlElement(name = "Dt", required = true)
protected DateAndDateTimeChoice dt;
@XmlElement(name = "Avlbty")
protected List avlbty;
/**
* Ruft den Wert der tp-Eigenschaft ab.
*
* @return
* possible object is
* {@link BalanceType12 }
*
*/
public BalanceType12 getTp() {
return tp;
}
/**
* Legt den Wert der tp-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link BalanceType12 }
*
*/
public void setTp(BalanceType12 value) {
this.tp = value;
}
/**
* Ruft den Wert der cdtLine-Eigenschaft ab.
*
* @return
* possible object is
* {@link CreditLine2 }
*
*/
public CreditLine2 getCdtLine() {
return cdtLine;
}
/**
* Legt den Wert der cdtLine-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link CreditLine2 }
*
*/
public void setCdtLine(CreditLine2 value) {
this.cdtLine = value;
}
/**
* Ruft den Wert der amt-Eigenschaft ab.
*
* @return
* possible object is
* {@link ActiveOrHistoricCurrencyAndAmount }
*
*/
public ActiveOrHistoricCurrencyAndAmount getAmt() {
return amt;
}
/**
* Legt den Wert der amt-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link ActiveOrHistoricCurrencyAndAmount }
*
*/
public void setAmt(ActiveOrHistoricCurrencyAndAmount value) {
this.amt = value;
}
/**
* Ruft den Wert der cdtDbtInd-Eigenschaft ab.
*
* @return
* possible object is
* {@link CreditDebitCode }
*
*/
public CreditDebitCode getCdtDbtInd() {
return cdtDbtInd;
}
/**
* Legt den Wert der cdtDbtInd-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link CreditDebitCode }
*
*/
public void setCdtDbtInd(CreditDebitCode value) {
this.cdtDbtInd = value;
}
/**
* Ruft den Wert der dt-Eigenschaft ab.
*
* @return
* possible object is
* {@link DateAndDateTimeChoice }
*
*/
public DateAndDateTimeChoice getDt() {
return dt;
}
/**
* Legt den Wert der dt-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link DateAndDateTimeChoice }
*
*/
public void setDt(DateAndDateTimeChoice value) {
this.dt = 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;
}
}