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

tsg.ns.wsdl.coop.CouponCodeSearchRowBasic 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 CouponCodeSearchRowBasic complex type. * *

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

 * <complexType name="CouponCodeSearchRowBasic">
 *   <complexContent>
 *     <extension base="{urn:core_2023_1.platform.webservices.netsuite.com}SearchRowBasic">
 *       <sequence>
 *         <element name="code" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnStringField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="dateSent" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnDateField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="externalId" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnSelectField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="id" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnLongField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="internalId" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnSelectField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="promotion" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnStringField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="recipient" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnStringField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="useCount" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnLongField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="used" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnBooleanField" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CouponCodeSearchRowBasic", namespace = "urn:common_2023_1.platform.webservices.netsuite.com", propOrder = { "code", "dateSent", "externalId", "id", "internalId", "promotion", "recipient", "useCount", "used" }) public class CouponCodeSearchRowBasic extends SearchRowBasic { protected List code; protected List dateSent; protected List externalId; protected List id; protected List internalId; protected List promotion; protected List recipient; protected List useCount; protected List used; /** * Gets the value of the code 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 code property. * *

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

     *    getCode().add(newItem);
     * 
* * *

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

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

     *    getDateSent().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SearchColumnDateField } * * */ public List getDateSent() { if (dateSent == null) { dateSent = new ArrayList(); } return this.dateSent; } /** * 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 id 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 id property. * *

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

     *    getId().add(newItem);
     * 
* * *

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

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

     *    getPromotion().add(newItem);
     * 
* * *

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

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

     *    getRecipient().add(newItem);
     * 
* * *

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

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

     *    getUseCount().add(newItem);
     * 
* * *

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

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

     *    getUsed().add(newItem);
     * 
* * *

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





© 2015 - 2025 Weber Informatics LLC | Privacy Policy