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

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

Java class for LoanPaymentAmount complex type. * *

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

 * <complexType name="LoanPaymentAmount">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="PMTAMT" type="{http://ofx.net/types/2003/04}AmountType"/>
 *         <element name="DTPMTDUE" type="{http://ofx.net/types/2003/04}DateTimeType"/>
 *         <element name="LATEFEEAMT" type="{http://ofx.net/types/2003/04}AmountType" minOccurs="0"/>
 *         <element name="ESCRWAMT" type="{http://ofx.net/types/2003/04}EscrowAmount" minOccurs="0"/>
 *         <element name="LOANPMTTYPE" type="{http://ofx.net/types/2003/04}LoanPaymentEnum" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LoanPaymentAmount", propOrder = { "pmtamt", "dtpmtdue", "latefeeamt", "escrwamt", "loanpmttype" }) public class LoanPaymentAmount { @XmlElement(name = "PMTAMT", required = true) protected String pmtamt; @XmlElement(name = "DTPMTDUE", required = true) protected String dtpmtdue; @XmlElement(name = "LATEFEEAMT") protected String latefeeamt; @XmlElement(name = "ESCRWAMT") protected EscrowAmount escrwamt; @XmlElement(name = "LOANPMTTYPE") @XmlSchemaType(name = "string") protected LoanPaymentEnum loanpmttype; /** * Gets the value of the pmtamt property. * * @return * possible object is * {@link String } * */ public String getPMTAMT() { return pmtamt; } /** * Sets the value of the pmtamt property. * * @param value * allowed object is * {@link String } * */ public void setPMTAMT(String value) { this.pmtamt = value; } /** * Gets the value of the dtpmtdue property. * * @return * possible object is * {@link String } * */ public String getDTPMTDUE() { return dtpmtdue; } /** * Sets the value of the dtpmtdue property. * * @param value * allowed object is * {@link String } * */ public void setDTPMTDUE(String value) { this.dtpmtdue = value; } /** * Gets the value of the latefeeamt property. * * @return * possible object is * {@link String } * */ public String getLATEFEEAMT() { return latefeeamt; } /** * Sets the value of the latefeeamt property. * * @param value * allowed object is * {@link String } * */ public void setLATEFEEAMT(String value) { this.latefeeamt = value; } /** * Gets the value of the escrwamt property. * * @return * possible object is * {@link EscrowAmount } * */ public EscrowAmount getESCRWAMT() { return escrwamt; } /** * Sets the value of the escrwamt property. * * @param value * allowed object is * {@link EscrowAmount } * */ public void setESCRWAMT(EscrowAmount value) { this.escrwamt = value; } /** * Gets the value of the loanpmttype property. * * @return * possible object is * {@link LoanPaymentEnum } * */ public LoanPaymentEnum getLOANPMTTYPE() { return loanpmttype; } /** * Sets the value of the loanpmttype property. * * @param value * allowed object is * {@link LoanPaymentEnum } * */ public void setLOANPMTTYPE(LoanPaymentEnum value) { this.loanpmttype = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy