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

tsg.ns.wsdl.coop.LotNumberedInventoryItemNumbers Maven / Gradle / Ivy


package tsg.ns.wsdl.coop;

import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 

Java class for LotNumberedInventoryItemNumbers complex type. * *

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

 * <complexType name="LotNumberedInventoryItemNumbers">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="serialNumber" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="quantityOnHand" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="expirationDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LotNumberedInventoryItemNumbers", propOrder = { "serialNumber", "quantityOnHand", "expirationDate" }) public class LotNumberedInventoryItemNumbers { protected RecordRef serialNumber; protected Double quantityOnHand; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar expirationDate; /** * Gets the value of the serialNumber property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getSerialNumber() { return serialNumber; } /** * Sets the value of the serialNumber property. * * @param value * allowed object is * {@link RecordRef } * */ public void setSerialNumber(RecordRef value) { this.serialNumber = value; } /** * Gets the value of the quantityOnHand property. * * @return * possible object is * {@link Double } * */ public Double getQuantityOnHand() { return quantityOnHand; } /** * Sets the value of the quantityOnHand property. * * @param value * allowed object is * {@link Double } * */ public void setQuantityOnHand(Double value) { this.quantityOnHand = 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; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy