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

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

The newest version!

package com.bytekast.netsuite.client;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for CustomerMessageSearchRowBasic complex type. * *

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

 * <complexType name="CustomerMessageSearchRowBasic">
 *   <complexContent>
 *     <extension base="{urn:core_2017_1.platform.webservices.netsuite.com}SearchRowBasic">
 *       <sequence>
 *         <element name="description" type="{urn:core_2017_1.platform.webservices.netsuite.com}SearchColumnStringField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="externalId" type="{urn:core_2017_1.platform.webservices.netsuite.com}SearchColumnSelectField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="internalId" type="{urn:core_2017_1.platform.webservices.netsuite.com}SearchColumnSelectField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="isInactive" type="{urn:core_2017_1.platform.webservices.netsuite.com}SearchColumnBooleanField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="name" type="{urn:core_2017_1.platform.webservices.netsuite.com}SearchColumnStringField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="preferred" type="{urn:core_2017_1.platform.webservices.netsuite.com}SearchColumnStringField" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CustomerMessageSearchRowBasic", namespace = "urn:common_2017_1.platform.webservices.netsuite.com", propOrder = { "description", "externalId", "internalId", "isInactive", "name", "preferred" }) public class CustomerMessageSearchRowBasic extends SearchRowBasic implements Serializable { protected List description; protected List externalId; protected List internalId; protected List isInactive; protected List name; protected List preferred; /** * Gets the value of the description 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 JAXB object. * This is why there is not a set method for the description property. * *

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

     *    getDescription().add(newItem);
     * 
* * *

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





© 2015 - 2024 Weber Informatics LLC | Privacy Policy