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

com.webcohesion.ofx4j.generated.InvestmentStatementRequest 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 jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 
 *         The OFX element "INVSTMTRQ" is of type "InvestmentStatementRequest"
 *       
 * 
 * 

Java class for InvestmentStatementRequest complex type. * *

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

 * <complexType name="InvestmentStatementRequest">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="INVACCTFROM" type="{http://ofx.net/types/2003/04}InvestmentAccount"/>
 *         <element name="INCTRAN" type="{http://ofx.net/types/2003/04}IncTransaction"/>
 *         <element name="INCOO" type="{http://ofx.net/types/2003/04}BooleanType"/>
 *         <element name="INCPOS" type="{http://ofx.net/types/2003/04}IncPosition"/>
 *         <element name="INCBAL" type="{http://ofx.net/types/2003/04}BooleanType"/>
 *         <element name="INC401K" type="{http://ofx.net/types/2003/04}BooleanType" minOccurs="0"/>
 *         <element name="INC401KBAL" type="{http://ofx.net/types/2003/04}BooleanType" minOccurs="0"/>
 *         <element name="INCTRANIMG" type="{http://ofx.net/types/2003/04}BooleanType" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "InvestmentStatementRequest", propOrder = { "invacctfrom", "inctran", "incoo", "incpos", "incbal", "inc401K", "inc401KBAL", "inctranimg" }) public class InvestmentStatementRequest { @XmlElement(name = "INVACCTFROM", required = true) protected InvestmentAccount invacctfrom; @XmlElement(name = "INCTRAN", required = true) protected IncTransaction inctran; @XmlElement(name = "INCOO", required = true) @XmlSchemaType(name = "string") protected BooleanType incoo; @XmlElement(name = "INCPOS", required = true) protected IncPosition incpos; @XmlElement(name = "INCBAL", required = true) @XmlSchemaType(name = "string") protected BooleanType incbal; @XmlElement(name = "INC401K") @XmlSchemaType(name = "string") protected BooleanType inc401K; @XmlElement(name = "INC401KBAL") @XmlSchemaType(name = "string") protected BooleanType inc401KBAL; @XmlElement(name = "INCTRANIMG") @XmlSchemaType(name = "string") protected BooleanType inctranimg; /** * Gets the value of the invacctfrom property. * * @return * possible object is * {@link InvestmentAccount } * */ public InvestmentAccount getINVACCTFROM() { return invacctfrom; } /** * Sets the value of the invacctfrom property. * * @param value * allowed object is * {@link InvestmentAccount } * */ public void setINVACCTFROM(InvestmentAccount value) { this.invacctfrom = value; } /** * Gets the value of the inctran property. * * @return * possible object is * {@link IncTransaction } * */ public IncTransaction getINCTRAN() { return inctran; } /** * Sets the value of the inctran property. * * @param value * allowed object is * {@link IncTransaction } * */ public void setINCTRAN(IncTransaction value) { this.inctran = value; } /** * Gets the value of the incoo property. * * @return * possible object is * {@link BooleanType } * */ public BooleanType getINCOO() { return incoo; } /** * Sets the value of the incoo property. * * @param value * allowed object is * {@link BooleanType } * */ public void setINCOO(BooleanType value) { this.incoo = value; } /** * Gets the value of the incpos property. * * @return * possible object is * {@link IncPosition } * */ public IncPosition getINCPOS() { return incpos; } /** * Sets the value of the incpos property. * * @param value * allowed object is * {@link IncPosition } * */ public void setINCPOS(IncPosition value) { this.incpos = value; } /** * Gets the value of the incbal property. * * @return * possible object is * {@link BooleanType } * */ public BooleanType getINCBAL() { return incbal; } /** * Sets the value of the incbal property. * * @param value * allowed object is * {@link BooleanType } * */ public void setINCBAL(BooleanType value) { this.incbal = value; } /** * Gets the value of the inc401K property. * * @return * possible object is * {@link BooleanType } * */ public BooleanType getINC401K() { return inc401K; } /** * Sets the value of the inc401K property. * * @param value * allowed object is * {@link BooleanType } * */ public void setINC401K(BooleanType value) { this.inc401K = value; } /** * Gets the value of the inc401KBAL property. * * @return * possible object is * {@link BooleanType } * */ public BooleanType getINC401KBAL() { return inc401KBAL; } /** * Sets the value of the inc401KBAL property. * * @param value * allowed object is * {@link BooleanType } * */ public void setINC401KBAL(BooleanType value) { this.inc401KBAL = value; } /** * Gets the value of the inctranimg property. * * @return * possible object is * {@link BooleanType } * */ public BooleanType getINCTRANIMG() { return inctranimg; } /** * Sets the value of the inctranimg property. * * @param value * allowed object is * {@link BooleanType } * */ public void setINCTRANIMG(BooleanType value) { this.inctranimg = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy