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

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

The newest version!

package com.bytekast.netsuite.client;

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


/**
 * 

Java class for AddressSearchBasic complex type. * *

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

 * <complexType name="AddressSearchBasic">
 *   <complexContent>
 *     <extension base="{urn:core_2017_1.platform.webservices.netsuite.com}SearchRecordBasic">
 *       <sequence>
 *         <element name="address" type="{urn:core_2017_1.platform.webservices.netsuite.com}SearchStringField" minOccurs="0"/>
 *         <element name="address1" type="{urn:core_2017_1.platform.webservices.netsuite.com}SearchStringField" minOccurs="0"/>
 *         <element name="address2" type="{urn:core_2017_1.platform.webservices.netsuite.com}SearchStringField" minOccurs="0"/>
 *         <element name="address3" type="{urn:core_2017_1.platform.webservices.netsuite.com}SearchStringField" minOccurs="0"/>
 *         <element name="addressee" type="{urn:core_2017_1.platform.webservices.netsuite.com}SearchStringField" minOccurs="0"/>
 *         <element name="attention" type="{urn:core_2017_1.platform.webservices.netsuite.com}SearchStringField" minOccurs="0"/>
 *         <element name="city" type="{urn:core_2017_1.platform.webservices.netsuite.com}SearchStringField" minOccurs="0"/>
 *         <element name="country" type="{urn:core_2017_1.platform.webservices.netsuite.com}SearchEnumMultiSelectField" minOccurs="0"/>
 *         <element name="countryCode" type="{urn:core_2017_1.platform.webservices.netsuite.com}SearchStringField" minOccurs="0"/>
 *         <element name="externalId" type="{urn:core_2017_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
 *         <element name="externalIdString" type="{urn:core_2017_1.platform.webservices.netsuite.com}SearchStringField" minOccurs="0"/>
 *         <element name="internalId" type="{urn:core_2017_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
 *         <element name="internalIdNumber" type="{urn:core_2017_1.platform.webservices.netsuite.com}SearchLongField" minOccurs="0"/>
 *         <element name="override" type="{urn:core_2017_1.platform.webservices.netsuite.com}SearchBooleanField" minOccurs="0"/>
 *         <element name="phone" type="{urn:core_2017_1.platform.webservices.netsuite.com}SearchStringField" minOccurs="0"/>
 *         <element name="state" type="{urn:core_2017_1.platform.webservices.netsuite.com}SearchStringField" minOccurs="0"/>
 *         <element name="zip" type="{urn:core_2017_1.platform.webservices.netsuite.com}SearchStringField" minOccurs="0"/>
 *         <element name="customFieldList" type="{urn:core_2017_1.platform.webservices.netsuite.com}SearchCustomFieldList" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AddressSearchBasic", namespace = "urn:common_2017_1.platform.webservices.netsuite.com", propOrder = { "address", "address1", "address2", "address3", "addressee", "attention", "city", "country", "countryCode", "externalId", "externalIdString", "internalId", "internalIdNumber", "override", "phone", "state", "zip", "customFieldList" }) public class AddressSearchBasic extends SearchRecordBasic implements Serializable { protected SearchStringField address; protected SearchStringField address1; protected SearchStringField address2; protected SearchStringField address3; protected SearchStringField addressee; protected SearchStringField attention; protected SearchStringField city; protected SearchEnumMultiSelectField country; protected SearchStringField countryCode; protected SearchMultiSelectField externalId; protected SearchStringField externalIdString; protected SearchMultiSelectField internalId; protected SearchLongField internalIdNumber; protected SearchBooleanField override; protected SearchStringField phone; protected SearchStringField state; protected SearchStringField zip; protected SearchCustomFieldList customFieldList; /** * Gets the value of the address property. * * @return * possible object is * {@link SearchStringField } * */ public SearchStringField getAddress() { return address; } /** * Sets the value of the address property. * * @param value * allowed object is * {@link SearchStringField } * */ public void setAddress(SearchStringField value) { this.address = value; } /** * Gets the value of the address1 property. * * @return * possible object is * {@link SearchStringField } * */ public SearchStringField getAddress1() { return address1; } /** * Sets the value of the address1 property. * * @param value * allowed object is * {@link SearchStringField } * */ public void setAddress1(SearchStringField value) { this.address1 = value; } /** * Gets the value of the address2 property. * * @return * possible object is * {@link SearchStringField } * */ public SearchStringField getAddress2() { return address2; } /** * Sets the value of the address2 property. * * @param value * allowed object is * {@link SearchStringField } * */ public void setAddress2(SearchStringField value) { this.address2 = value; } /** * Gets the value of the address3 property. * * @return * possible object is * {@link SearchStringField } * */ public SearchStringField getAddress3() { return address3; } /** * Sets the value of the address3 property. * * @param value * allowed object is * {@link SearchStringField } * */ public void setAddress3(SearchStringField value) { this.address3 = value; } /** * Gets the value of the addressee property. * * @return * possible object is * {@link SearchStringField } * */ public SearchStringField getAddressee() { return addressee; } /** * Sets the value of the addressee property. * * @param value * allowed object is * {@link SearchStringField } * */ public void setAddressee(SearchStringField value) { this.addressee = value; } /** * Gets the value of the attention property. * * @return * possible object is * {@link SearchStringField } * */ public SearchStringField getAttention() { return attention; } /** * Sets the value of the attention property. * * @param value * allowed object is * {@link SearchStringField } * */ public void setAttention(SearchStringField value) { this.attention = value; } /** * Gets the value of the city property. * * @return * possible object is * {@link SearchStringField } * */ public SearchStringField getCity() { return city; } /** * Sets the value of the city property. * * @param value * allowed object is * {@link SearchStringField } * */ public void setCity(SearchStringField value) { this.city = value; } /** * 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 countryCode property. * * @return * possible object is * {@link SearchStringField } * */ public SearchStringField getCountryCode() { return countryCode; } /** * Sets the value of the countryCode property. * * @param value * allowed object is * {@link SearchStringField } * */ public void setCountryCode(SearchStringField value) { this.countryCode = 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 override property. * * @return * possible object is * {@link SearchBooleanField } * */ public SearchBooleanField getOverride() { return override; } /** * Sets the value of the override property. * * @param value * allowed object is * {@link SearchBooleanField } * */ public void setOverride(SearchBooleanField value) { this.override = value; } /** * Gets the value of the phone property. * * @return * possible object is * {@link SearchStringField } * */ public SearchStringField getPhone() { return phone; } /** * Sets the value of the phone property. * * @param value * allowed object is * {@link SearchStringField } * */ public void setPhone(SearchStringField value) { this.phone = value; } /** * Gets the value of the state property. * * @return * possible object is * {@link SearchStringField } * */ public SearchStringField getState() { return state; } /** * Sets the value of the state property. * * @param value * allowed object is * {@link SearchStringField } * */ public void setState(SearchStringField value) { this.state = value; } /** * Gets the value of the zip property. * * @return * possible object is * {@link SearchStringField } * */ public SearchStringField getZip() { return zip; } /** * Sets the value of the zip property. * * @param value * allowed object is * {@link SearchStringField } * */ public void setZip(SearchStringField value) { this.zip = value; } /** * Gets the value of the customFieldList property. * * @return * possible object is * {@link SearchCustomFieldList } * */ public SearchCustomFieldList getCustomFieldList() { return customFieldList; } /** * Sets the value of the customFieldList property. * * @param value * allowed object is * {@link SearchCustomFieldList } * */ public void setCustomFieldList(SearchCustomFieldList value) { this.customFieldList = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy