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

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


package tsg.ns.wsdl.coop;

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.XmlType;


/**
 * 

Java class for TermSearchRowBasic complex type. * *

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

 * <complexType name="TermSearchRowBasic">
 *   <complexContent>
 *     <extension base="{urn:core_2023_1.platform.webservices.netsuite.com}SearchRowBasic">
 *       <sequence>
 *         <element name="dateDriven" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnBooleanField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="dayDiscountExpires" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnLongField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="dayOfMonthNetDue" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnLongField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="daysUntilExpiry" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnLongField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="daysUntilNetDue" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnLongField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="discountPercent" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnDoubleField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="discountPercentDateDriven" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnDoubleField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="dueNextMonthIfWithinDays" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnLongField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="externalId" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnSelectField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="installment" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnBooleanField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="internalId" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnSelectField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="isInactive" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnBooleanField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="name" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnStringField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="preferred" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnBooleanField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="recurrenceCount" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnLongField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="recurrenceFrequency" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnStringField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="repeatEvery" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnLongField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="splitEvenly" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnBooleanField" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TermSearchRowBasic", namespace = "urn:common_2023_1.platform.webservices.netsuite.com", propOrder = { "dateDriven", "dayDiscountExpires", "dayOfMonthNetDue", "daysUntilExpiry", "daysUntilNetDue", "discountPercent", "discountPercentDateDriven", "dueNextMonthIfWithinDays", "externalId", "installment", "internalId", "isInactive", "name", "preferred", "recurrenceCount", "recurrenceFrequency", "repeatEvery", "splitEvenly" }) public class TermSearchRowBasic extends SearchRowBasic { protected List dateDriven; protected List dayDiscountExpires; protected List dayOfMonthNetDue; protected List daysUntilExpiry; protected List daysUntilNetDue; protected List discountPercent; protected List discountPercentDateDriven; protected List dueNextMonthIfWithinDays; protected List externalId; protected List installment; protected List internalId; protected List isInactive; protected List name; protected List preferred; protected List recurrenceCount; protected List recurrenceFrequency; protected List repeatEvery; protected List splitEvenly; /** * Gets the value of the dateDriven 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 dateDriven property. * *

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

     *    getDateDriven().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SearchColumnBooleanField } * * */ public List getDateDriven() { if (dateDriven == null) { dateDriven = new ArrayList(); } return this.dateDriven; } /** * Gets the value of the dayDiscountExpires 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 dayDiscountExpires property. * *

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

     *    getDayDiscountExpires().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SearchColumnLongField } * * */ public List getDayDiscountExpires() { if (dayDiscountExpires == null) { dayDiscountExpires = new ArrayList(); } return this.dayDiscountExpires; } /** * Gets the value of the dayOfMonthNetDue 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 dayOfMonthNetDue property. * *

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

     *    getDayOfMonthNetDue().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SearchColumnLongField } * * */ public List getDayOfMonthNetDue() { if (dayOfMonthNetDue == null) { dayOfMonthNetDue = new ArrayList(); } return this.dayOfMonthNetDue; } /** * Gets the value of the daysUntilExpiry 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 daysUntilExpiry property. * *

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

     *    getDaysUntilExpiry().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SearchColumnLongField } * * */ public List getDaysUntilExpiry() { if (daysUntilExpiry == null) { daysUntilExpiry = new ArrayList(); } return this.daysUntilExpiry; } /** * Gets the value of the daysUntilNetDue 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 daysUntilNetDue property. * *

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

     *    getDaysUntilNetDue().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SearchColumnLongField } * * */ public List getDaysUntilNetDue() { if (daysUntilNetDue == null) { daysUntilNetDue = new ArrayList(); } return this.daysUntilNetDue; } /** * Gets the value of the discountPercent 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 discountPercent property. * *

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

     *    getDiscountPercent().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SearchColumnDoubleField } * * */ public List getDiscountPercent() { if (discountPercent == null) { discountPercent = new ArrayList(); } return this.discountPercent; } /** * Gets the value of the discountPercentDateDriven 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 discountPercentDateDriven property. * *

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

     *    getDiscountPercentDateDriven().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SearchColumnDoubleField } * * */ public List getDiscountPercentDateDriven() { if (discountPercentDateDriven == null) { discountPercentDateDriven = new ArrayList(); } return this.discountPercentDateDriven; } /** * Gets the value of the dueNextMonthIfWithinDays 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 dueNextMonthIfWithinDays property. * *

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

     *    getDueNextMonthIfWithinDays().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SearchColumnLongField } * * */ public List getDueNextMonthIfWithinDays() { if (dueNextMonthIfWithinDays == null) { dueNextMonthIfWithinDays = new ArrayList(); } return this.dueNextMonthIfWithinDays; } /** * Gets the value of the externalId 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 externalId property. * *

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

     *    getExternalId().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SearchColumnSelectField } * * */ public List getExternalId() { if (externalId == null) { externalId = new ArrayList(); } return this.externalId; } /** * Gets the value of the installment 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 installment property. * *

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

     *    getInstallment().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SearchColumnBooleanField } * * */ public List getInstallment() { if (installment == null) { installment = new ArrayList(); } return this.installment; } /** * Gets the value of the internalId 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 internalId property. * *

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

     *    getInternalId().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SearchColumnSelectField } * * */ public List getInternalId() { if (internalId == null) { internalId = new ArrayList(); } return this.internalId; } /** * Gets the value of the isInactive 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 isInactive property. * *

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

     *    getIsInactive().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SearchColumnBooleanField } * * */ public List getIsInactive() { if (isInactive == null) { isInactive = new ArrayList(); } return this.isInactive; } /** * Gets the value of the name 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 name property. * *

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

     *    getName().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SearchColumnStringField } * * */ public List getName() { if (name == null) { name = new ArrayList(); } return this.name; } /** * Gets the value of the preferred 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 preferred property. * *

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

     *    getPreferred().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SearchColumnBooleanField } * * */ public List getPreferred() { if (preferred == null) { preferred = new ArrayList(); } return this.preferred; } /** * Gets the value of the recurrenceCount 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 recurrenceCount property. * *

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

     *    getRecurrenceCount().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SearchColumnLongField } * * */ public List getRecurrenceCount() { if (recurrenceCount == null) { recurrenceCount = new ArrayList(); } return this.recurrenceCount; } /** * Gets the value of the recurrenceFrequency 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 recurrenceFrequency property. * *

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

     *    getRecurrenceFrequency().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SearchColumnStringField } * * */ public List getRecurrenceFrequency() { if (recurrenceFrequency == null) { recurrenceFrequency = new ArrayList(); } return this.recurrenceFrequency; } /** * Gets the value of the repeatEvery 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 repeatEvery property. * *

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

     *    getRepeatEvery().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SearchColumnLongField } * * */ public List getRepeatEvery() { if (repeatEvery == null) { repeatEvery = new ArrayList(); } return this.repeatEvery; } /** * Gets the value of the splitEvenly 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 splitEvenly property. * *

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

     *    getSplitEvenly().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SearchColumnBooleanField } * * */ public List getSplitEvenly() { if (splitEvenly == null) { splitEvenly = new ArrayList(); } return this.splitEvenly; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy