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

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

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

 * <complexType name="UsageSearchBasic">
 *   <complexContent>
 *     <extension base="{urn:core_2023_1.platform.webservices.netsuite.com}SearchRecordBasic">
 *       <sequence>
 *         <element name="customer" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
 *         <element name="date" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDateField" 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="item" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
 *         <element name="memo" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchStringField" minOccurs="0"/>
 *         <element name="quantity" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDoubleField" minOccurs="0"/>
 *         <element name="status" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchEnumMultiSelectField" minOccurs="0"/>
 *         <element name="subscription" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
 *         <element name="subscriptionLine" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
 *         <element name="subscriptionPlan" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "UsageSearchBasic", namespace = "urn:common_2023_1.platform.webservices.netsuite.com", propOrder = { "customer", "date", "externalId", "externalIdString", "internalId", "internalIdNumber", "item", "memo", "quantity", "status", "subscription", "subscriptionLine", "subscriptionPlan" }) public class UsageSearchBasic extends SearchRecordBasic { protected SearchMultiSelectField customer; protected SearchDateField date; protected SearchMultiSelectField externalId; protected SearchStringField externalIdString; protected SearchMultiSelectField internalId; protected SearchLongField internalIdNumber; protected SearchMultiSelectField item; protected SearchStringField memo; protected SearchDoubleField quantity; protected SearchEnumMultiSelectField status; protected SearchMultiSelectField subscription; protected SearchMultiSelectField subscriptionLine; protected SearchMultiSelectField subscriptionPlan; /** * Gets the value of the customer property. * * @return * possible object is * {@link SearchMultiSelectField } * */ public SearchMultiSelectField getCustomer() { return customer; } /** * Sets the value of the customer property. * * @param value * allowed object is * {@link SearchMultiSelectField } * */ public void setCustomer(SearchMultiSelectField value) { this.customer = value; } /** * Gets the value of the date property. * * @return * possible object is * {@link SearchDateField } * */ public SearchDateField getDate() { return date; } /** * Sets the value of the date property. * * @param value * allowed object is * {@link SearchDateField } * */ public void setDate(SearchDateField value) { this.date = 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 item property. * * @return * possible object is * {@link SearchMultiSelectField } * */ public SearchMultiSelectField getItem() { return item; } /** * Sets the value of the item property. * * @param value * allowed object is * {@link SearchMultiSelectField } * */ public void setItem(SearchMultiSelectField value) { this.item = value; } /** * Gets the value of the memo property. * * @return * possible object is * {@link SearchStringField } * */ public SearchStringField getMemo() { return memo; } /** * Sets the value of the memo property. * * @param value * allowed object is * {@link SearchStringField } * */ public void setMemo(SearchStringField value) { this.memo = value; } /** * Gets the value of the quantity property. * * @return * possible object is * {@link SearchDoubleField } * */ public SearchDoubleField getQuantity() { return quantity; } /** * Sets the value of the quantity property. * * @param value * allowed object is * {@link SearchDoubleField } * */ public void setQuantity(SearchDoubleField value) { this.quantity = 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 subscription property. * * @return * possible object is * {@link SearchMultiSelectField } * */ public SearchMultiSelectField getSubscription() { return subscription; } /** * Sets the value of the subscription property. * * @param value * allowed object is * {@link SearchMultiSelectField } * */ public void setSubscription(SearchMultiSelectField value) { this.subscription = value; } /** * Gets the value of the subscriptionLine property. * * @return * possible object is * {@link SearchMultiSelectField } * */ public SearchMultiSelectField getSubscriptionLine() { return subscriptionLine; } /** * Sets the value of the subscriptionLine property. * * @param value * allowed object is * {@link SearchMultiSelectField } * */ public void setSubscriptionLine(SearchMultiSelectField value) { this.subscriptionLine = value; } /** * Gets the value of the subscriptionPlan property. * * @return * possible object is * {@link SearchMultiSelectField } * */ public SearchMultiSelectField getSubscriptionPlan() { return subscriptionPlan; } /** * Sets the value of the subscriptionPlan property. * * @param value * allowed object is * {@link SearchMultiSelectField } * */ public void setSubscriptionPlan(SearchMultiSelectField value) { this.subscriptionPlan = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy