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

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


package tsg.ns.wsdl.coop;

import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 

Java class for NexusSearchBasic complex type. * *

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

 * <complexType name="NexusSearchBasic">
 *   <complexContent>
 *     <extension base="{urn:core_2023_1.platform.webservices.netsuite.com}SearchRecordBasic">
 *       <sequence>
 *         <element name="country" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchEnumMultiSelectField" minOccurs="0"/>
 *         <element name="description" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchStringField" minOccurs="0"/>
 *         <element name="externalId" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
 *         <element name="externalIdString" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchStringField" minOccurs="0"/>
 *         <element name="internalId" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
 *         <element name="internalIdNumber" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchLongField" minOccurs="0"/>
 *         <element name="isInactive" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchBooleanField" minOccurs="0"/>
 *         <element name="parentNexus" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
 *         <element name="state" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
 *         <element name="taxAgency" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
 *         <element name="taxDateFromFulfillment" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchBooleanField" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NexusSearchBasic", namespace = "urn:common_2023_1.platform.webservices.netsuite.com", propOrder = { "country", "description", "externalId", "externalIdString", "internalId", "internalIdNumber", "isInactive", "parentNexus", "state", "taxAgency", "taxDateFromFulfillment" }) public class NexusSearchBasic extends SearchRecordBasic { protected SearchEnumMultiSelectField country; protected SearchStringField description; protected SearchMultiSelectField externalId; protected SearchStringField externalIdString; protected SearchMultiSelectField internalId; protected SearchLongField internalIdNumber; protected SearchBooleanField isInactive; protected SearchMultiSelectField parentNexus; protected SearchMultiSelectField state; protected SearchMultiSelectField taxAgency; protected SearchBooleanField taxDateFromFulfillment; /** * Gets the value of the country property. * * @return * possible object is * {@link SearchEnumMultiSelectField } * */ public SearchEnumMultiSelectField getCountry() { return country; } /** * Sets the value of the country property. * * @param value * allowed object is * {@link SearchEnumMultiSelectField } * */ public void setCountry(SearchEnumMultiSelectField value) { this.country = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link SearchStringField } * */ public SearchStringField getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link SearchStringField } * */ public void setDescription(SearchStringField value) { this.description = value; } /** * Gets the value of the externalId property. * * @return * possible object is * {@link SearchMultiSelectField } * */ public SearchMultiSelectField getExternalId() { return externalId; } /** * Sets the value of the externalId property. * * @param value * allowed object is * {@link SearchMultiSelectField } * */ public void setExternalId(SearchMultiSelectField value) { this.externalId = value; } /** * Gets the value of the externalIdString property. * * @return * possible object is * {@link SearchStringField } * */ public SearchStringField getExternalIdString() { return externalIdString; } /** * Sets the value of the externalIdString property. * * @param value * allowed object is * {@link SearchStringField } * */ public void setExternalIdString(SearchStringField value) { this.externalIdString = value; } /** * Gets the value of the internalId property. * * @return * possible object is * {@link SearchMultiSelectField } * */ public SearchMultiSelectField getInternalId() { return internalId; } /** * Sets the value of the internalId property. * * @param value * allowed object is * {@link SearchMultiSelectField } * */ public void setInternalId(SearchMultiSelectField value) { this.internalId = value; } /** * Gets the value of the internalIdNumber property. * * @return * possible object is * {@link SearchLongField } * */ public SearchLongField getInternalIdNumber() { return internalIdNumber; } /** * Sets the value of the internalIdNumber property. * * @param value * allowed object is * {@link SearchLongField } * */ public void setInternalIdNumber(SearchLongField value) { this.internalIdNumber = value; } /** * Gets the value of the isInactive property. * * @return * possible object is * {@link SearchBooleanField } * */ public SearchBooleanField getIsInactive() { return isInactive; } /** * Sets the value of the isInactive property. * * @param value * allowed object is * {@link SearchBooleanField } * */ public void setIsInactive(SearchBooleanField value) { this.isInactive = value; } /** * Gets the value of the parentNexus property. * * @return * possible object is * {@link SearchMultiSelectField } * */ public SearchMultiSelectField getParentNexus() { return parentNexus; } /** * Sets the value of the parentNexus property. * * @param value * allowed object is * {@link SearchMultiSelectField } * */ public void setParentNexus(SearchMultiSelectField value) { this.parentNexus = value; } /** * Gets the value of the state property. * * @return * possible object is * {@link SearchMultiSelectField } * */ public SearchMultiSelectField getState() { return state; } /** * Sets the value of the state property. * * @param value * allowed object is * {@link SearchMultiSelectField } * */ public void setState(SearchMultiSelectField value) { this.state = value; } /** * Gets the value of the taxAgency property. * * @return * possible object is * {@link SearchMultiSelectField } * */ public SearchMultiSelectField getTaxAgency() { return taxAgency; } /** * Sets the value of the taxAgency property. * * @param value * allowed object is * {@link SearchMultiSelectField } * */ public void setTaxAgency(SearchMultiSelectField value) { this.taxAgency = value; } /** * Gets the value of the taxDateFromFulfillment property. * * @return * possible object is * {@link SearchBooleanField } * */ public SearchBooleanField getTaxDateFromFulfillment() { return taxDateFromFulfillment; } /** * Sets the value of the taxDateFromFulfillment property. * * @param value * allowed object is * {@link SearchBooleanField } * */ public void setTaxDateFromFulfillment(SearchBooleanField value) { this.taxDateFromFulfillment = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy