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

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


/**
 * 
 *         The OFX element "WIREXFERMSGSETV1" is of type "WireTransferMessageSetV1"
 *       
 * 
 * 

Java class for WireTransferMessageSetV1 complex type. * *

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

 * <complexType name="WireTransferMessageSetV1">
 *   <complexContent>
 *     <extension base="{http://ofx.net/types/2003/04}AbstractMessageSetVersion">
 *       <sequence>
 *         <element name="PROCDAYSOFF" type="{http://ofx.net/types/2003/04}DaysEnum" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="PROCENDTM" type="{http://ofx.net/types/2003/04}TimeType"/>
 *         <element name="CANSCHED" type="{http://ofx.net/types/2003/04}BooleanType"/>
 *         <element name="DOMXFERFEE" type="{http://ofx.net/types/2003/04}AmountType"/>
 *         <element name="INTLXFERFEE" type="{http://ofx.net/types/2003/04}AmountType"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "WireTransferMessageSetV1", propOrder = { "procdaysoff", "procendtm", "cansched", "domxferfee", "intlxferfee" }) public class WireTransferMessageSetV1 extends AbstractMessageSetVersion { @XmlElement(name = "PROCDAYSOFF") @XmlSchemaType(name = "string") protected List procdaysoff; @XmlElement(name = "PROCENDTM", required = true) protected String procendtm; @XmlElement(name = "CANSCHED", required = true) @XmlSchemaType(name = "string") protected BooleanType cansched; @XmlElement(name = "DOMXFERFEE", required = true) protected String domxferfee; @XmlElement(name = "INTLXFERFEE", required = true) protected String intlxferfee; /** * Gets the value of the procdaysoff 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 procdaysoff property. * *

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

     *    getPROCDAYSOFF().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link DaysEnum } * * */ public List getPROCDAYSOFF() { if (procdaysoff == null) { procdaysoff = new ArrayList(); } return this.procdaysoff; } /** * Gets the value of the procendtm property. * * @return * possible object is * {@link String } * */ public String getPROCENDTM() { return procendtm; } /** * Sets the value of the procendtm property. * * @param value * allowed object is * {@link String } * */ public void setPROCENDTM(String value) { this.procendtm = value; } /** * Gets the value of the cansched property. * * @return * possible object is * {@link BooleanType } * */ public BooleanType getCANSCHED() { return cansched; } /** * Sets the value of the cansched property. * * @param value * allowed object is * {@link BooleanType } * */ public void setCANSCHED(BooleanType value) { this.cansched = value; } /** * Gets the value of the domxferfee property. * * @return * possible object is * {@link String } * */ public String getDOMXFERFEE() { return domxferfee; } /** * Sets the value of the domxferfee property. * * @param value * allowed object is * {@link String } * */ public void setDOMXFERFEE(String value) { this.domxferfee = value; } /** * Gets the value of the intlxferfee property. * * @return * possible object is * {@link String } * */ public String getINTLXFERFEE() { return intlxferfee; } /** * Sets the value of the intlxferfee property. * * @param value * allowed object is * {@link String } * */ public void setINTLXFERFEE(String value) { this.intlxferfee = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy