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

com.webcohesion.ofx4j.generated.BankTransactionList Maven / Gradle / Ivy

Go to download

OFX4J is a Java implementation of Open Financial Exchange, which defines web service APIs for interfacing with financial institutions.

The newest version!
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.0 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2024.09.09 at 02:21:09 PM MDT 
//


package com.webcohesion.ofx4j.generated;

import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 
 *         The OFX element "BANKTRANLIST" is of type "BankTransactionList"
 *       
 * 
 * 

Java class for BankTransactionList complex type. * *

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

 * <complexType name="BankTransactionList">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="DTSTART" type="{http://ofx.net/types/2003/04}DateTimeType"/>
 *         <element name="DTEND" type="{http://ofx.net/types/2003/04}DateTimeType"/>
 *         <element name="STMTTRN" type="{http://ofx.net/types/2003/04}StatementTransaction" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "BankTransactionList", propOrder = { "dtstart", "dtend", "stmttrn" }) public class BankTransactionList { @XmlElement(name = "DTSTART", required = true) protected String dtstart; @XmlElement(name = "DTEND", required = true) protected String dtend; @XmlElement(name = "STMTTRN") protected List stmttrn; /** * Gets the value of the dtstart property. * * @return * possible object is * {@link String } * */ public String getDTSTART() { return dtstart; } /** * Sets the value of the dtstart property. * * @param value * allowed object is * {@link String } * */ public void setDTSTART(String value) { this.dtstart = value; } /** * Gets the value of the dtend property. * * @return * possible object is * {@link String } * */ public String getDTEND() { return dtend; } /** * Sets the value of the dtend property. * * @param value * allowed object is * {@link String } * */ public void setDTEND(String value) { this.dtend = value; } /** * Gets the value of the stmttrn 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 Jakarta XML Binding object. * This is why there is not a set method for the stmttrn property. * *

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

     *    getSTMTTRN().add(newItem);
     * 
* * *

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





© 2015 - 2024 Weber Informatics LLC | Privacy Policy