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

com.webcohesion.ofx4j.generated.IntraSyncRequest 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 "INTRASYNCRQ" is of type "IntraSyncRequest"
 *       
 * 
 * 

Java class for IntraSyncRequest complex type. * *

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

 * <complexType name="IntraSyncRequest">
 *   <complexContent>
 *     <extension base="{http://ofx.net/types/2003/04}AbstractSyncRequest">
 *       <sequence>
 *         <choice>
 *           <element name="BANKACCTFROM" type="{http://ofx.net/types/2003/04}BankAccount"/>
 *           <element name="CCACCTFROM" type="{http://ofx.net/types/2003/04}CreditCardAccount"/>
 *           <element name="LOANACCTFROM" type="{http://ofx.net/types/2003/04}LoanAccount"/>
 *         </choice>
 *         <element name="OFXEXTENSION" type="{http://ofx.net/types/2003/04}OFXExtensionType" minOccurs="0"/>
 *         <element name="INTRATRNRQ" type="{http://ofx.net/types/2003/04}IntraTransactionRequest" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IntraSyncRequest", propOrder = { "bankacctfrom", "ccacctfrom", "loanacctfrom", "ofxextension", "intratrnrq" }) public class IntraSyncRequest extends AbstractSyncRequest { @XmlElement(name = "BANKACCTFROM") protected BankAccount bankacctfrom; @XmlElement(name = "CCACCTFROM") protected CreditCardAccount ccacctfrom; @XmlElement(name = "LOANACCTFROM") protected LoanAccount loanacctfrom; @XmlElement(name = "OFXEXTENSION") protected OFXExtensionType ofxextension; @XmlElement(name = "INTRATRNRQ") protected List intratrnrq; /** * Gets the value of the bankacctfrom property. * * @return * possible object is * {@link BankAccount } * */ public BankAccount getBANKACCTFROM() { return bankacctfrom; } /** * Sets the value of the bankacctfrom property. * * @param value * allowed object is * {@link BankAccount } * */ public void setBANKACCTFROM(BankAccount value) { this.bankacctfrom = value; } /** * Gets the value of the ccacctfrom property. * * @return * possible object is * {@link CreditCardAccount } * */ public CreditCardAccount getCCACCTFROM() { return ccacctfrom; } /** * Sets the value of the ccacctfrom property. * * @param value * allowed object is * {@link CreditCardAccount } * */ public void setCCACCTFROM(CreditCardAccount value) { this.ccacctfrom = value; } /** * Gets the value of the loanacctfrom property. * * @return * possible object is * {@link LoanAccount } * */ public LoanAccount getLOANACCTFROM() { return loanacctfrom; } /** * Sets the value of the loanacctfrom property. * * @param value * allowed object is * {@link LoanAccount } * */ public void setLOANACCTFROM(LoanAccount value) { this.loanacctfrom = value; } /** * Gets the value of the ofxextension property. * * @return * possible object is * {@link OFXExtensionType } * */ public OFXExtensionType getOFXEXTENSION() { return ofxextension; } /** * Sets the value of the ofxextension property. * * @param value * allowed object is * {@link OFXExtensionType } * */ public void setOFXEXTENSION(OFXExtensionType value) { this.ofxextension = value; } /** * Gets the value of the intratrnrq 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 intratrnrq property. * *

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

     *    getINTRATRNRQ().add(newItem);
     * 
* * *

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





© 2015 - 2024 Weber Informatics LLC | Privacy Policy