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

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

Java class for InterResponse complex type. * *

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

 * <complexType name="InterResponse">
 *   <complexContent>
 *     <extension base="{http://ofx.net/types/2003/04}AbstractInterResponse">
 *       <sequence>
 *         <element name="CURDEF" type="{http://ofx.net/types/2003/04}CurrencyEnum"/>
 *         <element name="SRVRTID" type="{http://ofx.net/types/2003/04}ServerIdType"/>
 *         <element name="XFERINFO" type="{http://ofx.net/types/2003/04}TransferInfo"/>
 *         <choice minOccurs="0">
 *           <element name="DTXFERPRJ" type="{http://ofx.net/types/2003/04}DateTimeType"/>
 *           <element name="DTPOSTED" type="{http://ofx.net/types/2003/04}DateTimeType"/>
 *         </choice>
 *         <element name="REFNUM" type="{http://ofx.net/types/2003/04}ReferenceNumberType" minOccurs="0"/>
 *         <element name="RECSRVRTID" type="{http://ofx.net/types/2003/04}ServerIdType" minOccurs="0"/>
 *         <element name="XFERPRCSTS" type="{http://ofx.net/types/2003/04}TransferProcessingStatus" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "InterResponse", propOrder = { "curdef", "srvrtid", "xferinfo", "dtxferprj", "dtposted", "refnum", "recsrvrtid", "xferprcsts" }) public class InterResponse extends AbstractInterResponse { @XmlElement(name = "CURDEF", required = true) @XmlSchemaType(name = "string") protected CurrencyEnum curdef; @XmlElement(name = "SRVRTID", required = true) protected String srvrtid; @XmlElement(name = "XFERINFO", required = true) protected TransferInfo xferinfo; @XmlElement(name = "DTXFERPRJ") protected String dtxferprj; @XmlElement(name = "DTPOSTED") protected String dtposted; @XmlElement(name = "REFNUM") protected String refnum; @XmlElement(name = "RECSRVRTID") protected String recsrvrtid; @XmlElement(name = "XFERPRCSTS") protected TransferProcessingStatus xferprcsts; /** * Gets the value of the curdef property. * * @return * possible object is * {@link CurrencyEnum } * */ public CurrencyEnum getCURDEF() { return curdef; } /** * Sets the value of the curdef property. * * @param value * allowed object is * {@link CurrencyEnum } * */ public void setCURDEF(CurrencyEnum value) { this.curdef = value; } /** * Gets the value of the srvrtid property. * * @return * possible object is * {@link String } * */ public String getSRVRTID() { return srvrtid; } /** * Sets the value of the srvrtid property. * * @param value * allowed object is * {@link String } * */ public void setSRVRTID(String value) { this.srvrtid = value; } /** * Gets the value of the xferinfo property. * * @return * possible object is * {@link TransferInfo } * */ public TransferInfo getXFERINFO() { return xferinfo; } /** * Sets the value of the xferinfo property. * * @param value * allowed object is * {@link TransferInfo } * */ public void setXFERINFO(TransferInfo value) { this.xferinfo = value; } /** * Gets the value of the dtxferprj property. * * @return * possible object is * {@link String } * */ public String getDTXFERPRJ() { return dtxferprj; } /** * Sets the value of the dtxferprj property. * * @param value * allowed object is * {@link String } * */ public void setDTXFERPRJ(String value) { this.dtxferprj = value; } /** * Gets the value of the dtposted property. * * @return * possible object is * {@link String } * */ public String getDTPOSTED() { return dtposted; } /** * Sets the value of the dtposted property. * * @param value * allowed object is * {@link String } * */ public void setDTPOSTED(String value) { this.dtposted = value; } /** * Gets the value of the refnum property. * * @return * possible object is * {@link String } * */ public String getREFNUM() { return refnum; } /** * Sets the value of the refnum property. * * @param value * allowed object is * {@link String } * */ public void setREFNUM(String value) { this.refnum = value; } /** * Gets the value of the recsrvrtid property. * * @return * possible object is * {@link String } * */ public String getRECSRVRTID() { return recsrvrtid; } /** * Sets the value of the recsrvrtid property. * * @param value * allowed object is * {@link String } * */ public void setRECSRVRTID(String value) { this.recsrvrtid = value; } /** * Gets the value of the xferprcsts property. * * @return * possible object is * {@link TransferProcessingStatus } * */ public TransferProcessingStatus getXFERPRCSTS() { return xferprcsts; } /** * Sets the value of the xferprcsts property. * * @param value * allowed object is * {@link TransferProcessingStatus } * */ public void setXFERPRCSTS(TransferProcessingStatus value) { this.xferprcsts = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy