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

tsg.ns.wsdl.coop.VendorPaymentApply Maven / Gradle / Ivy


package tsg.ns.wsdl.coop;

import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 

Java class for VendorPaymentApply complex type. * *

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

 * <complexType name="VendorPaymentApply">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="apply" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="doc" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="line" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="job" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="applyDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="refNum" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="total" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="due" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="discDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="discAmt" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="disc" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="amount" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VendorPaymentApply", namespace = "urn:purchases_2023_1.transactions.webservices.netsuite.com", propOrder = { "apply", "doc", "line", "job", "applyDate", "type", "refNum", "total", "due", "currency", "discDate", "discAmt", "disc", "amount" }) public class VendorPaymentApply { protected Boolean apply; protected Long doc; protected Long line; protected String job; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar applyDate; protected String type; protected String refNum; protected Double total; protected Double due; protected String currency; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar discDate; protected Double discAmt; protected Double disc; protected Double amount; /** * Gets the value of the apply property. * * @return * possible object is * {@link Boolean } * */ public Boolean isApply() { return apply; } /** * Sets the value of the apply property. * * @param value * allowed object is * {@link Boolean } * */ public void setApply(Boolean value) { this.apply = value; } /** * Gets the value of the doc property. * * @return * possible object is * {@link Long } * */ public Long getDoc() { return doc; } /** * Sets the value of the doc property. * * @param value * allowed object is * {@link Long } * */ public void setDoc(Long value) { this.doc = value; } /** * Gets the value of the line property. * * @return * possible object is * {@link Long } * */ public Long getLine() { return line; } /** * Sets the value of the line property. * * @param value * allowed object is * {@link Long } * */ public void setLine(Long value) { this.line = value; } /** * Gets the value of the job property. * * @return * possible object is * {@link String } * */ public String getJob() { return job; } /** * Sets the value of the job property. * * @param value * allowed object is * {@link String } * */ public void setJob(String value) { this.job = value; } /** * Gets the value of the applyDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getApplyDate() { return applyDate; } /** * Sets the value of the applyDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setApplyDate(XMLGregorianCalendar value) { this.applyDate = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = 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 total property. * * @return * possible object is * {@link Double } * */ public Double getTotal() { return total; } /** * Sets the value of the total property. * * @param value * allowed object is * {@link Double } * */ public void setTotal(Double value) { this.total = value; } /** * Gets the value of the due property. * * @return * possible object is * {@link Double } * */ public Double getDue() { return due; } /** * Sets the value of the due property. * * @param value * allowed object is * {@link Double } * */ public void setDue(Double value) { this.due = value; } /** * Gets the value of the currency property. * * @return * possible object is * {@link String } * */ public String getCurrency() { return currency; } /** * Sets the value of the currency property. * * @param value * allowed object is * {@link String } * */ public void setCurrency(String value) { this.currency = value; } /** * Gets the value of the discDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getDiscDate() { return discDate; } /** * Sets the value of the discDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setDiscDate(XMLGregorianCalendar value) { this.discDate = value; } /** * Gets the value of the discAmt property. * * @return * possible object is * {@link Double } * */ public Double getDiscAmt() { return discAmt; } /** * Sets the value of the discAmt property. * * @param value * allowed object is * {@link Double } * */ public void setDiscAmt(Double value) { this.discAmt = value; } /** * Gets the value of the disc property. * * @return * possible object is * {@link Double } * */ public Double getDisc() { return disc; } /** * Sets the value of the disc property. * * @param value * allowed object is * {@link Double } * */ public void setDisc(Double value) { this.disc = value; } /** * Gets the value of the amount property. * * @return * possible object is * {@link Double } * */ public Double getAmount() { return amount; } /** * Sets the value of the amount property. * * @param value * allowed object is * {@link Double } * */ public void setAmount(Double value) { this.amount = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy