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

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

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

 * <complexType name="PricingSearchBasic">
 *   <complexContent>
 *     <extension base="{urn:core_2023_1.platform.webservices.netsuite.com}SearchRecordBasic">
 *       <sequence>
 *         <element name="assignedPriceLevel" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchBooleanField" minOccurs="0"/>
 *         <element name="currency" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
 *         <element name="customer" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" 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="maximumQuantity" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDoubleField" minOccurs="0"/>
 *         <element name="minimumQuantity" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDoubleField" minOccurs="0"/>
 *         <element name="priceLevel" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
 *         <element name="rate" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDoubleField" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PricingSearchBasic", namespace = "urn:common_2023_1.platform.webservices.netsuite.com", propOrder = { "assignedPriceLevel", "currency", "customer", "internalId", "internalIdNumber", "item", "maximumQuantity", "minimumQuantity", "priceLevel", "rate" }) public class PricingSearchBasic extends SearchRecordBasic { protected SearchBooleanField assignedPriceLevel; protected SearchMultiSelectField currency; protected SearchMultiSelectField customer; protected SearchMultiSelectField internalId; protected SearchLongField internalIdNumber; protected SearchMultiSelectField item; protected SearchDoubleField maximumQuantity; protected SearchDoubleField minimumQuantity; protected SearchMultiSelectField priceLevel; protected SearchDoubleField rate; /** * Gets the value of the assignedPriceLevel property. * * @return * possible object is * {@link SearchBooleanField } * */ public SearchBooleanField getAssignedPriceLevel() { return assignedPriceLevel; } /** * Sets the value of the assignedPriceLevel property. * * @param value * allowed object is * {@link SearchBooleanField } * */ public void setAssignedPriceLevel(SearchBooleanField value) { this.assignedPriceLevel = value; } /** * Gets the value of the currency property. * * @return * possible object is * {@link SearchMultiSelectField } * */ public SearchMultiSelectField getCurrency() { return currency; } /** * Sets the value of the currency property. * * @param value * allowed object is * {@link SearchMultiSelectField } * */ public void setCurrency(SearchMultiSelectField value) { this.currency = value; } /** * 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 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 maximumQuantity property. * * @return * possible object is * {@link SearchDoubleField } * */ public SearchDoubleField getMaximumQuantity() { return maximumQuantity; } /** * Sets the value of the maximumQuantity property. * * @param value * allowed object is * {@link SearchDoubleField } * */ public void setMaximumQuantity(SearchDoubleField value) { this.maximumQuantity = value; } /** * Gets the value of the minimumQuantity property. * * @return * possible object is * {@link SearchDoubleField } * */ public SearchDoubleField getMinimumQuantity() { return minimumQuantity; } /** * Sets the value of the minimumQuantity property. * * @param value * allowed object is * {@link SearchDoubleField } * */ public void setMinimumQuantity(SearchDoubleField value) { this.minimumQuantity = value; } /** * Gets the value of the priceLevel property. * * @return * possible object is * {@link SearchMultiSelectField } * */ public SearchMultiSelectField getPriceLevel() { return priceLevel; } /** * Sets the value of the priceLevel property. * * @param value * allowed object is * {@link SearchMultiSelectField } * */ public void setPriceLevel(SearchMultiSelectField value) { this.priceLevel = value; } /** * Gets the value of the rate property. * * @return * possible object is * {@link SearchDoubleField } * */ public SearchDoubleField getRate() { return rate; } /** * Sets the value of the rate property. * * @param value * allowed object is * {@link SearchDoubleField } * */ public void setRate(SearchDoubleField value) { this.rate = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy