
tsg.ns.wsdl.coop.SolutionSearchBasic 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.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for SolutionSearchBasic complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="SolutionSearchBasic">
* <complexContent>
* <extension base="{urn:core_2023_1.platform.webservices.netsuite.com}SearchRecordBasic">
* <sequence>
* <element name="abstract" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchStringField" minOccurs="0"/>
* <element name="assigned" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
* <element name="caseCount" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchLongField" minOccurs="0"/>
* <element name="code" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchStringField" minOccurs="0"/>
* <element name="createdDate" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDateField" 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="find" 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="isOnline" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchBooleanField" minOccurs="0"/>
* <element name="lastModifiedDate" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDateField" minOccurs="0"/>
* <element name="number" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchLongField" minOccurs="0"/>
* <element name="status" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchEnumMultiSelectField" minOccurs="0"/>
* <element name="title" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchStringField" minOccurs="0"/>
* <element name="topic" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
* <element name="customFieldList" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchCustomFieldList" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SolutionSearchBasic", namespace = "urn:common_2023_1.platform.webservices.netsuite.com", propOrder = {
"_abstract",
"assigned",
"caseCount",
"code",
"createdDate",
"description",
"externalId",
"externalIdString",
"find",
"internalId",
"internalIdNumber",
"isInactive",
"isOnline",
"lastModifiedDate",
"number",
"status",
"title",
"topic",
"customFieldList"
})
public class SolutionSearchBasic
extends SearchRecordBasic
{
@XmlElement(name = "abstract")
protected SearchStringField _abstract;
protected SearchMultiSelectField assigned;
protected SearchLongField caseCount;
protected SearchStringField code;
protected SearchDateField createdDate;
protected SearchStringField description;
protected SearchMultiSelectField externalId;
protected SearchStringField externalIdString;
protected SearchStringField find;
protected SearchMultiSelectField internalId;
protected SearchLongField internalIdNumber;
protected SearchBooleanField isInactive;
protected SearchBooleanField isOnline;
protected SearchDateField lastModifiedDate;
protected SearchLongField number;
protected SearchEnumMultiSelectField status;
protected SearchStringField title;
protected SearchMultiSelectField topic;
protected SearchCustomFieldList customFieldList;
/**
* Gets the value of the abstract property.
*
* @return
* possible object is
* {@link SearchStringField }
*
*/
public SearchStringField getAbstract() {
return _abstract;
}
/**
* Sets the value of the abstract property.
*
* @param value
* allowed object is
* {@link SearchStringField }
*
*/
public void setAbstract(SearchStringField value) {
this._abstract = value;
}
/**
* Gets the value of the assigned property.
*
* @return
* possible object is
* {@link SearchMultiSelectField }
*
*/
public SearchMultiSelectField getAssigned() {
return assigned;
}
/**
* Sets the value of the assigned property.
*
* @param value
* allowed object is
* {@link SearchMultiSelectField }
*
*/
public void setAssigned(SearchMultiSelectField value) {
this.assigned = value;
}
/**
* Gets the value of the caseCount property.
*
* @return
* possible object is
* {@link SearchLongField }
*
*/
public SearchLongField getCaseCount() {
return caseCount;
}
/**
* Sets the value of the caseCount property.
*
* @param value
* allowed object is
* {@link SearchLongField }
*
*/
public void setCaseCount(SearchLongField value) {
this.caseCount = value;
}
/**
* Gets the value of the code property.
*
* @return
* possible object is
* {@link SearchStringField }
*
*/
public SearchStringField getCode() {
return code;
}
/**
* Sets the value of the code property.
*
* @param value
* allowed object is
* {@link SearchStringField }
*
*/
public void setCode(SearchStringField value) {
this.code = value;
}
/**
* Gets the value of the createdDate property.
*
* @return
* possible object is
* {@link SearchDateField }
*
*/
public SearchDateField getCreatedDate() {
return createdDate;
}
/**
* Sets the value of the createdDate property.
*
* @param value
* allowed object is
* {@link SearchDateField }
*
*/
public void setCreatedDate(SearchDateField value) {
this.createdDate = 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 find property.
*
* @return
* possible object is
* {@link SearchStringField }
*
*/
public SearchStringField getFind() {
return find;
}
/**
* Sets the value of the find property.
*
* @param value
* allowed object is
* {@link SearchStringField }
*
*/
public void setFind(SearchStringField value) {
this.find = 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 isOnline property.
*
* @return
* possible object is
* {@link SearchBooleanField }
*
*/
public SearchBooleanField getIsOnline() {
return isOnline;
}
/**
* Sets the value of the isOnline property.
*
* @param value
* allowed object is
* {@link SearchBooleanField }
*
*/
public void setIsOnline(SearchBooleanField value) {
this.isOnline = value;
}
/**
* Gets the value of the lastModifiedDate property.
*
* @return
* possible object is
* {@link SearchDateField }
*
*/
public SearchDateField getLastModifiedDate() {
return lastModifiedDate;
}
/**
* Sets the value of the lastModifiedDate property.
*
* @param value
* allowed object is
* {@link SearchDateField }
*
*/
public void setLastModifiedDate(SearchDateField value) {
this.lastModifiedDate = value;
}
/**
* Gets the value of the number property.
*
* @return
* possible object is
* {@link SearchLongField }
*
*/
public SearchLongField getNumber() {
return number;
}
/**
* Sets the value of the number property.
*
* @param value
* allowed object is
* {@link SearchLongField }
*
*/
public void setNumber(SearchLongField value) {
this.number = value;
}
/**
* Gets the value of the status property.
*
* @return
* possible object is
* {@link SearchEnumMultiSelectField }
*
*/
public SearchEnumMultiSelectField getStatus() {
return status;
}
/**
* Sets the value of the status property.
*
* @param value
* allowed object is
* {@link SearchEnumMultiSelectField }
*
*/
public void setStatus(SearchEnumMultiSelectField value) {
this.status = value;
}
/**
* Gets the value of the title property.
*
* @return
* possible object is
* {@link SearchStringField }
*
*/
public SearchStringField getTitle() {
return title;
}
/**
* Sets the value of the title property.
*
* @param value
* allowed object is
* {@link SearchStringField }
*
*/
public void setTitle(SearchStringField value) {
this.title = value;
}
/**
* Gets the value of the topic property.
*
* @return
* possible object is
* {@link SearchMultiSelectField }
*
*/
public SearchMultiSelectField getTopic() {
return topic;
}
/**
* Sets the value of the topic property.
*
* @param value
* allowed object is
* {@link SearchMultiSelectField }
*
*/
public void setTopic(SearchMultiSelectField value) {
this.topic = 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 - 2025 Weber Informatics LLC | Privacy Policy