![JAR search and dependency download from the Maven repository](/logo.png)
cz.geek.fio.AccountStatement Maven / Gradle / Ivy
The newest version!
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.5
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package cz.geek.fio;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type
.
*
* The following schema fragment specifies the expected content contained within this class.
*
* {@code
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"info",
"transactionList"
})
@XmlRootElement(name = "AccountStatement")
public class AccountStatement {
@XmlElement(name = "Info", required = true)
protected Info info = new Info();
@XmlElement(name = "TransactionList")
protected TransactionList transactionList;
/**
* Gets the value of the info property.
*
* @return
* possible object is
* {@link Info }
*
*/
public Info getInfo() {
return info;
}
/**
* Sets the value of the info property.
*
* @param value
* allowed object is
* {@link Info }
*
*/
public void setInfo(Info value) {
this.info = value;
}
/**
* Gets the value of the transactionList property.
*
* @return
* possible object is
* {@link TransactionList }
*
*/
public TransactionList getTransactionList() {
return transactionList;
}
/**
* Sets the value of the transactionList property.
*
* @param value
* allowed object is
* {@link TransactionList }
*
*/
public void setTransactionList(TransactionList value) {
this.transactionList = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy