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

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

Java class for Mail complex type. * *

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

 * <complexType name="Mail">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="USERID" type="{http://ofx.net/types/2003/04}IdType"/>
 *         <element name="DTCREATED" type="{http://ofx.net/types/2003/04}DateTimeType"/>
 *         <element name="FROM" type="{http://ofx.net/types/2003/04}GenericNameType"/>
 *         <element name="TO" type="{http://ofx.net/types/2003/04}GenericNameType"/>
 *         <element name="SUBJECT" type="{http://ofx.net/types/2003/04}SubjectType"/>
 *         <element name="MSGBODY" type="{http://ofx.net/types/2003/04}MessageBodyType"/>
 *         <element name="INCIMAGES" type="{http://ofx.net/types/2003/04}BooleanType"/>
 *         <element name="USEHTML" type="{http://ofx.net/types/2003/04}BooleanType"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Mail", propOrder = { "userid", "dtcreated", "from", "to", "subject", "msgbody", "incimages", "usehtml" }) public class Mail { @XmlElement(name = "USERID", required = true) protected String userid; @XmlElement(name = "DTCREATED", required = true) protected String dtcreated; @XmlElement(name = "FROM", required = true) protected String from; @XmlElement(name = "TO", required = true) protected String to; @XmlElement(name = "SUBJECT", required = true) protected String subject; @XmlElement(name = "MSGBODY", required = true) protected String msgbody; @XmlElement(name = "INCIMAGES", required = true) @XmlSchemaType(name = "string") protected BooleanType incimages; @XmlElement(name = "USEHTML", required = true) @XmlSchemaType(name = "string") protected BooleanType usehtml; /** * Gets the value of the userid property. * * @return * possible object is * {@link String } * */ public String getUSERID() { return userid; } /** * Sets the value of the userid property. * * @param value * allowed object is * {@link String } * */ public void setUSERID(String value) { this.userid = value; } /** * Gets the value of the dtcreated property. * * @return * possible object is * {@link String } * */ public String getDTCREATED() { return dtcreated; } /** * Sets the value of the dtcreated property. * * @param value * allowed object is * {@link String } * */ public void setDTCREATED(String value) { this.dtcreated = value; } /** * Gets the value of the from property. * * @return * possible object is * {@link String } * */ public String getFROM() { return from; } /** * Sets the value of the from property. * * @param value * allowed object is * {@link String } * */ public void setFROM(String value) { this.from = value; } /** * Gets the value of the to property. * * @return * possible object is * {@link String } * */ public String getTO() { return to; } /** * Sets the value of the to property. * * @param value * allowed object is * {@link String } * */ public void setTO(String value) { this.to = value; } /** * Gets the value of the subject property. * * @return * possible object is * {@link String } * */ public String getSUBJECT() { return subject; } /** * Sets the value of the subject property. * * @param value * allowed object is * {@link String } * */ public void setSUBJECT(String value) { this.subject = value; } /** * Gets the value of the msgbody property. * * @return * possible object is * {@link String } * */ public String getMSGBODY() { return msgbody; } /** * Sets the value of the msgbody property. * * @param value * allowed object is * {@link String } * */ public void setMSGBODY(String value) { this.msgbody = value; } /** * Gets the value of the incimages property. * * @return * possible object is * {@link BooleanType } * */ public BooleanType getINCIMAGES() { return incimages; } /** * Sets the value of the incimages property. * * @param value * allowed object is * {@link BooleanType } * */ public void setINCIMAGES(BooleanType value) { this.incimages = value; } /** * Gets the value of the usehtml property. * * @return * possible object is * {@link BooleanType } * */ public BooleanType getUSEHTML() { return usehtml; } /** * Sets the value of the usehtml property. * * @param value * allowed object is * {@link BooleanType } * */ public void setUSEHTML(BooleanType value) { this.usehtml = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy