org.adorsys.psd2.iso20022.camt054.CashAvailabilityDate1Choice 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.camt054;
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;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Java-Klasse für CashAvailabilityDate1Choice complex type.
*
*
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <complexType name="CashAvailabilityDate1Choice">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <choice>
* <element name="NbOfDays" type="{urn:iso:std:iso:20022:tech:xsd:camt.054.001.06}Max15PlusSignedNumericText"/>
* <element name="ActlDt" type="{urn:iso:std:iso:20022:tech:xsd:camt.054.001.06}ISODate"/>
* </choice>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CashAvailabilityDate1Choice", propOrder = {
"nbOfDays",
"actlDt"
})
public class CashAvailabilityDate1Choice {
@XmlElement(name = "NbOfDays")
protected String nbOfDays;
@XmlElement(name = "ActlDt")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar actlDt;
/**
* Ruft den Wert der nbOfDays-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNbOfDays() {
return nbOfDays;
}
/**
* Legt den Wert der nbOfDays-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNbOfDays(String value) {
this.nbOfDays = value;
}
/**
* Ruft den Wert der actlDt-Eigenschaft ab.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getActlDt() {
return actlDt;
}
/**
* Legt den Wert der actlDt-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setActlDt(XMLGregorianCalendar value) {
this.actlDt = value;
}
}