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

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

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

 * <complexType name="EntityTaxRegistrationSearchBasic">
 *   <complexContent>
 *     <extension base="{urn:core_2023_1.platform.webservices.netsuite.com}SearchRecordBasic">
 *       <sequence>
 *         <element name="address" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
 *         <element name="id" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchLongField" minOccurs="0"/>
 *         <element name="nexusCountry" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchEnumMultiSelectField" minOccurs="0"/>
 *         <element name="taxRegistrationNumber" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchStringField" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "EntityTaxRegistrationSearchBasic", namespace = "urn:common_2023_1.platform.webservices.netsuite.com", propOrder = { "address", "id", "nexusCountry", "taxRegistrationNumber" }) public class EntityTaxRegistrationSearchBasic extends SearchRecordBasic { protected SearchMultiSelectField address; protected SearchLongField id; protected SearchEnumMultiSelectField nexusCountry; protected SearchStringField taxRegistrationNumber; /** * Gets the value of the address property. * * @return * possible object is * {@link SearchMultiSelectField } * */ public SearchMultiSelectField getAddress() { return address; } /** * Sets the value of the address property. * * @param value * allowed object is * {@link SearchMultiSelectField } * */ public void setAddress(SearchMultiSelectField value) { this.address = value; } /** * Gets the value of the id property. * * @return * possible object is * {@link SearchLongField } * */ public SearchLongField getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link SearchLongField } * */ public void setId(SearchLongField value) { this.id = value; } /** * Gets the value of the nexusCountry property. * * @return * possible object is * {@link SearchEnumMultiSelectField } * */ public SearchEnumMultiSelectField getNexusCountry() { return nexusCountry; } /** * Sets the value of the nexusCountry property. * * @param value * allowed object is * {@link SearchEnumMultiSelectField } * */ public void setNexusCountry(SearchEnumMultiSelectField value) { this.nexusCountry = value; } /** * Gets the value of the taxRegistrationNumber property. * * @return * possible object is * {@link SearchStringField } * */ public SearchStringField getTaxRegistrationNumber() { return taxRegistrationNumber; } /** * Sets the value of the taxRegistrationNumber property. * * @param value * allowed object is * {@link SearchStringField } * */ public void setTaxRegistrationNumber(SearchStringField value) { this.taxRegistrationNumber = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy