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

com.bytekast.netsuite.client.CheckItem 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.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Java class for CheckItem complex type. * *

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

 * <complexType name="CheckItem">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="item" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="vendorName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="line" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="quantity" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="units" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="inventoryDetail" type="{urn:common_2017_1.platform.webservices.netsuite.com}InventoryDetail" minOccurs="0"/>
 *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="binNumbers" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="serialNumbers" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="expirationDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="rate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="taxCode" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="amount" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="options" type="{urn:core_2017_1.platform.webservices.netsuite.com}CustomFieldList" minOccurs="0"/>
 *         <element name="taxRate1" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="taxRate2" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="department" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="grossAmt" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="class" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="tax1Amt" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="location" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="customer" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="isBillable" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="landedCost" type="{urn:common_2017_1.platform.webservices.netsuite.com}LandedCost" minOccurs="0"/>
 *         <element name="customFieldList" type="{urn:core_2017_1.platform.webservices.netsuite.com}CustomFieldList" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CheckItem", namespace = "urn:bank_2017_1.transactions.webservices.netsuite.com", propOrder = { "item", "vendorName", "line", "quantity", "units", "inventoryDetail", "description", "binNumbers", "serialNumbers", "expirationDate", "rate", "taxCode", "amount", "options", "taxRate1", "taxRate2", "department", "grossAmt", "clazz", "tax1Amt", "location", "customer", "isBillable", "landedCost", "customFieldList" }) public class CheckItem implements Serializable { protected RecordRef item; protected String vendorName; protected Long line; protected Double quantity; protected RecordRef units; protected InventoryDetail inventoryDetail; protected String description; protected String binNumbers; protected String serialNumbers; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar expirationDate; protected String rate; protected RecordRef taxCode; protected Double amount; protected CustomFieldList options; protected Double taxRate1; protected Double taxRate2; protected RecordRef department; protected Double grossAmt; @XmlElement(name = "class") protected RecordRef clazz; protected Double tax1Amt; protected RecordRef location; protected RecordRef customer; protected Boolean isBillable; protected LandedCost landedCost; protected CustomFieldList customFieldList; /** * Gets the value of the item property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getItem() { return item; } /** * Sets the value of the item property. * * @param value * allowed object is * {@link RecordRef } * */ public void setItem(RecordRef value) { this.item = value; } /** * Gets the value of the vendorName property. * * @return * possible object is * {@link String } * */ public String getVendorName() { return vendorName; } /** * Sets the value of the vendorName property. * * @param value * allowed object is * {@link String } * */ public void setVendorName(String value) { this.vendorName = value; } /** * Gets the value of the line property. * * @return * possible object is * {@link Long } * */ public Long getLine() { return line; } /** * Sets the value of the line property. * * @param value * allowed object is * {@link Long } * */ public void setLine(Long value) { this.line = value; } /** * Gets the value of the quantity property. * * @return * possible object is * {@link Double } * */ public Double getQuantity() { return quantity; } /** * Sets the value of the quantity property. * * @param value * allowed object is * {@link Double } * */ public void setQuantity(Double value) { this.quantity = value; } /** * Gets the value of the units property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getUnits() { return units; } /** * Sets the value of the units property. * * @param value * allowed object is * {@link RecordRef } * */ public void setUnits(RecordRef value) { this.units = value; } /** * Gets the value of the inventoryDetail property. * * @return * possible object is * {@link InventoryDetail } * */ public InventoryDetail getInventoryDetail() { return inventoryDetail; } /** * Sets the value of the inventoryDetail property. * * @param value * allowed object is * {@link InventoryDetail } * */ public void setInventoryDetail(InventoryDetail value) { this.inventoryDetail = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the binNumbers property. * * @return * possible object is * {@link String } * */ public String getBinNumbers() { return binNumbers; } /** * Sets the value of the binNumbers property. * * @param value * allowed object is * {@link String } * */ public void setBinNumbers(String value) { this.binNumbers = value; } /** * Gets the value of the serialNumbers property. * * @return * possible object is * {@link String } * */ public String getSerialNumbers() { return serialNumbers; } /** * Sets the value of the serialNumbers property. * * @param value * allowed object is * {@link String } * */ public void setSerialNumbers(String value) { this.serialNumbers = value; } /** * Gets the value of the expirationDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getExpirationDate() { return expirationDate; } /** * Sets the value of the expirationDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setExpirationDate(XMLGregorianCalendar value) { this.expirationDate = value; } /** * Gets the value of the rate property. * * @return * possible object is * {@link String } * */ public String getRate() { return rate; } /** * Sets the value of the rate property. * * @param value * allowed object is * {@link String } * */ public void setRate(String value) { this.rate = value; } /** * Gets the value of the taxCode property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getTaxCode() { return taxCode; } /** * Sets the value of the taxCode property. * * @param value * allowed object is * {@link RecordRef } * */ public void setTaxCode(RecordRef value) { this.taxCode = value; } /** * Gets the value of the amount property. * * @return * possible object is * {@link Double } * */ public Double getAmount() { return amount; } /** * Sets the value of the amount property. * * @param value * allowed object is * {@link Double } * */ public void setAmount(Double value) { this.amount = value; } /** * Gets the value of the options property. * * @return * possible object is * {@link CustomFieldList } * */ public CustomFieldList getOptions() { return options; } /** * Sets the value of the options property. * * @param value * allowed object is * {@link CustomFieldList } * */ public void setOptions(CustomFieldList value) { this.options = value; } /** * Gets the value of the taxRate1 property. * * @return * possible object is * {@link Double } * */ public Double getTaxRate1() { return taxRate1; } /** * Sets the value of the taxRate1 property. * * @param value * allowed object is * {@link Double } * */ public void setTaxRate1(Double value) { this.taxRate1 = value; } /** * Gets the value of the taxRate2 property. * * @return * possible object is * {@link Double } * */ public Double getTaxRate2() { return taxRate2; } /** * Sets the value of the taxRate2 property. * * @param value * allowed object is * {@link Double } * */ public void setTaxRate2(Double value) { this.taxRate2 = value; } /** * Gets the value of the department property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getDepartment() { return department; } /** * Sets the value of the department property. * * @param value * allowed object is * {@link RecordRef } * */ public void setDepartment(RecordRef value) { this.department = value; } /** * Gets the value of the grossAmt property. * * @return * possible object is * {@link Double } * */ public Double getGrossAmt() { return grossAmt; } /** * Sets the value of the grossAmt property. * * @param value * allowed object is * {@link Double } * */ public void setGrossAmt(Double value) { this.grossAmt = value; } /** * Gets the value of the clazz property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getClazz() { return clazz; } /** * Sets the value of the clazz property. * * @param value * allowed object is * {@link RecordRef } * */ public void setClazz(RecordRef value) { this.clazz = value; } /** * Gets the value of the tax1Amt property. * * @return * possible object is * {@link Double } * */ public Double getTax1Amt() { return tax1Amt; } /** * Sets the value of the tax1Amt property. * * @param value * allowed object is * {@link Double } * */ public void setTax1Amt(Double value) { this.tax1Amt = value; } /** * Gets the value of the location property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getLocation() { return location; } /** * Sets the value of the location property. * * @param value * allowed object is * {@link RecordRef } * */ public void setLocation(RecordRef value) { this.location = value; } /** * Gets the value of the customer property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getCustomer() { return customer; } /** * Sets the value of the customer property. * * @param value * allowed object is * {@link RecordRef } * */ public void setCustomer(RecordRef value) { this.customer = value; } /** * Gets the value of the isBillable property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIsBillable() { return isBillable; } /** * Sets the value of the isBillable property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsBillable(Boolean value) { this.isBillable = value; } /** * Gets the value of the landedCost property. * * @return * possible object is * {@link LandedCost } * */ public LandedCost getLandedCost() { return landedCost; } /** * Sets the value of the landedCost property. * * @param value * allowed object is * {@link LandedCost } * */ public void setLandedCost(LandedCost value) { this.landedCost = value; } /** * Gets the value of the customFieldList property. * * @return * possible object is * {@link CustomFieldList } * */ public CustomFieldList getCustomFieldList() { return customFieldList; } /** * Sets the value of the customFieldList property. * * @param value * allowed object is * {@link CustomFieldList } * */ public void setCustomFieldList(CustomFieldList value) { this.customFieldList = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy