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

com.bytekast.netsuite.client.Term Maven / Gradle / Ivy

The newest version!

package com.bytekast.netsuite.client;

import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for Term complex type. * *

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

 * <complexType name="Term">
 *   <complexContent>
 *     <extension base="{urn:core_2017_1.platform.webservices.netsuite.com}Record">
 *       <sequence>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="dateDriven" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="daysUntilNetDue" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="discountPercent" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="daysUntilExpiry" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="dayOfMonthNetDue" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="dueNextMonthIfWithinDays" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="discountPercentDateDriven" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="dayDiscountExpires" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="preferred" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="isInactive" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="internalId" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="externalId" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Term", propOrder = { "name", "dateDriven", "daysUntilNetDue", "discountPercent", "daysUntilExpiry", "dayOfMonthNetDue", "dueNextMonthIfWithinDays", "discountPercentDateDriven", "dayDiscountExpires", "preferred", "isInactive" }) public class Term extends Record implements Serializable { protected String name; protected Boolean dateDriven; protected Long daysUntilNetDue; protected Double discountPercent; protected Long daysUntilExpiry; protected Long dayOfMonthNetDue; protected Long dueNextMonthIfWithinDays; protected Double discountPercentDateDriven; protected Long dayDiscountExpires; protected Boolean preferred; protected Boolean isInactive; @XmlAttribute(name = "internalId") protected String internalId; @XmlAttribute(name = "externalId") protected String externalId; /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the dateDriven property. * * @return * possible object is * {@link Boolean } * */ public Boolean isDateDriven() { return dateDriven; } /** * Sets the value of the dateDriven property. * * @param value * allowed object is * {@link Boolean } * */ public void setDateDriven(Boolean value) { this.dateDriven = value; } /** * Gets the value of the daysUntilNetDue property. * * @return * possible object is * {@link Long } * */ public Long getDaysUntilNetDue() { return daysUntilNetDue; } /** * Sets the value of the daysUntilNetDue property. * * @param value * allowed object is * {@link Long } * */ public void setDaysUntilNetDue(Long value) { this.daysUntilNetDue = value; } /** * Gets the value of the discountPercent property. * * @return * possible object is * {@link Double } * */ public Double getDiscountPercent() { return discountPercent; } /** * Sets the value of the discountPercent property. * * @param value * allowed object is * {@link Double } * */ public void setDiscountPercent(Double value) { this.discountPercent = value; } /** * Gets the value of the daysUntilExpiry property. * * @return * possible object is * {@link Long } * */ public Long getDaysUntilExpiry() { return daysUntilExpiry; } /** * Sets the value of the daysUntilExpiry property. * * @param value * allowed object is * {@link Long } * */ public void setDaysUntilExpiry(Long value) { this.daysUntilExpiry = value; } /** * Gets the value of the dayOfMonthNetDue property. * * @return * possible object is * {@link Long } * */ public Long getDayOfMonthNetDue() { return dayOfMonthNetDue; } /** * Sets the value of the dayOfMonthNetDue property. * * @param value * allowed object is * {@link Long } * */ public void setDayOfMonthNetDue(Long value) { this.dayOfMonthNetDue = value; } /** * Gets the value of the dueNextMonthIfWithinDays property. * * @return * possible object is * {@link Long } * */ public Long getDueNextMonthIfWithinDays() { return dueNextMonthIfWithinDays; } /** * Sets the value of the dueNextMonthIfWithinDays property. * * @param value * allowed object is * {@link Long } * */ public void setDueNextMonthIfWithinDays(Long value) { this.dueNextMonthIfWithinDays = value; } /** * Gets the value of the discountPercentDateDriven property. * * @return * possible object is * {@link Double } * */ public Double getDiscountPercentDateDriven() { return discountPercentDateDriven; } /** * Sets the value of the discountPercentDateDriven property. * * @param value * allowed object is * {@link Double } * */ public void setDiscountPercentDateDriven(Double value) { this.discountPercentDateDriven = value; } /** * Gets the value of the dayDiscountExpires property. * * @return * possible object is * {@link Long } * */ public Long getDayDiscountExpires() { return dayDiscountExpires; } /** * Sets the value of the dayDiscountExpires property. * * @param value * allowed object is * {@link Long } * */ public void setDayDiscountExpires(Long value) { this.dayDiscountExpires = value; } /** * Gets the value of the preferred property. * * @return * possible object is * {@link Boolean } * */ public Boolean isPreferred() { return preferred; } /** * Sets the value of the preferred property. * * @param value * allowed object is * {@link Boolean } * */ public void setPreferred(Boolean value) { this.preferred = value; } /** * Gets the value of the isInactive property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIsInactive() { return isInactive; } /** * Sets the value of the isInactive property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsInactive(Boolean value) { this.isInactive = value; } /** * Gets the value of the internalId property. * * @return * possible object is * {@link String } * */ public String getInternalId() { return internalId; } /** * Sets the value of the internalId property. * * @param value * allowed object is * {@link String } * */ public void setInternalId(String value) { this.internalId = value; } /** * Gets the value of the externalId property. * * @return * possible object is * {@link String } * */ public String getExternalId() { return externalId; } /** * Sets the value of the externalId property. * * @param value * allowed object is * {@link String } * */ public void setExternalId(String value) { this.externalId = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy