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

com.bytekast.netsuite.client.WorkOrderIssue 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.XmlAttribute;
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 WorkOrderIssue complex type. * *

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

 * <complexType name="WorkOrderIssue">
 *   <complexContent>
 *     <extension base="{urn:core_2017_1.platform.webservices.netsuite.com}Record">
 *       <sequence>
 *         <element name="createdDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="lastModifiedDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="customForm" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="tranId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="item" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="createdFrom" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="tranDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="postingPeriod" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="memo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="subsidiary" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="department" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="class" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="location" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="revision" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="manufacturingRouting" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="startOperation" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="endOperation" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="componentList" type="{urn:inventory_2017_1.transactions.webservices.netsuite.com}WorkOrderIssueComponentList" minOccurs="0"/>
 *         <element name="customFieldList" type="{urn:core_2017_1.platform.webservices.netsuite.com}CustomFieldList" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="internalId" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="externalId" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "WorkOrderIssue", namespace = "urn:inventory_2017_1.transactions.webservices.netsuite.com", propOrder = { "createdDate", "lastModifiedDate", "customForm", "tranId", "item", "createdFrom", "tranDate", "postingPeriod", "memo", "subsidiary", "department", "clazz", "location", "revision", "manufacturingRouting", "startOperation", "endOperation", "componentList", "customFieldList" }) public class WorkOrderIssue extends Record implements Serializable { @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar createdDate; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar lastModifiedDate; protected RecordRef customForm; protected String tranId; protected RecordRef item; protected RecordRef createdFrom; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar tranDate; protected RecordRef postingPeriod; protected String memo; protected RecordRef subsidiary; protected RecordRef department; @XmlElement(name = "class") protected RecordRef clazz; protected RecordRef location; protected RecordRef revision; protected RecordRef manufacturingRouting; protected RecordRef startOperation; protected RecordRef endOperation; protected WorkOrderIssueComponentList componentList; protected CustomFieldList customFieldList; @XmlAttribute(name = "internalId") protected String internalId; @XmlAttribute(name = "externalId") protected String externalId; /** * Gets the value of the createdDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getCreatedDate() { return createdDate; } /** * Sets the value of the createdDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setCreatedDate(XMLGregorianCalendar value) { this.createdDate = value; } /** * Gets the value of the lastModifiedDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getLastModifiedDate() { return lastModifiedDate; } /** * Sets the value of the lastModifiedDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setLastModifiedDate(XMLGregorianCalendar value) { this.lastModifiedDate = value; } /** * Gets the value of the customForm property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getCustomForm() { return customForm; } /** * Sets the value of the customForm property. * * @param value * allowed object is * {@link RecordRef } * */ public void setCustomForm(RecordRef value) { this.customForm = value; } /** * Gets the value of the tranId property. * * @return * possible object is * {@link String } * */ public String getTranId() { return tranId; } /** * Sets the value of the tranId property. * * @param value * allowed object is * {@link String } * */ public void setTranId(String value) { this.tranId = value; } /** * 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 createdFrom property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getCreatedFrom() { return createdFrom; } /** * Sets the value of the createdFrom property. * * @param value * allowed object is * {@link RecordRef } * */ public void setCreatedFrom(RecordRef value) { this.createdFrom = value; } /** * Gets the value of the tranDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getTranDate() { return tranDate; } /** * Sets the value of the tranDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setTranDate(XMLGregorianCalendar value) { this.tranDate = value; } /** * Gets the value of the postingPeriod property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getPostingPeriod() { return postingPeriod; } /** * Sets the value of the postingPeriod property. * * @param value * allowed object is * {@link RecordRef } * */ public void setPostingPeriod(RecordRef value) { this.postingPeriod = value; } /** * Gets the value of the memo property. * * @return * possible object is * {@link String } * */ public String getMemo() { return memo; } /** * Sets the value of the memo property. * * @param value * allowed object is * {@link String } * */ public void setMemo(String value) { this.memo = value; } /** * Gets the value of the subsidiary property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getSubsidiary() { return subsidiary; } /** * Sets the value of the subsidiary property. * * @param value * allowed object is * {@link RecordRef } * */ public void setSubsidiary(RecordRef value) { this.subsidiary = 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 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 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 revision property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getRevision() { return revision; } /** * Sets the value of the revision property. * * @param value * allowed object is * {@link RecordRef } * */ public void setRevision(RecordRef value) { this.revision = value; } /** * Gets the value of the manufacturingRouting property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getManufacturingRouting() { return manufacturingRouting; } /** * Sets the value of the manufacturingRouting property. * * @param value * allowed object is * {@link RecordRef } * */ public void setManufacturingRouting(RecordRef value) { this.manufacturingRouting = value; } /** * Gets the value of the startOperation property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getStartOperation() { return startOperation; } /** * Sets the value of the startOperation property. * * @param value * allowed object is * {@link RecordRef } * */ public void setStartOperation(RecordRef value) { this.startOperation = value; } /** * Gets the value of the endOperation property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getEndOperation() { return endOperation; } /** * Sets the value of the endOperation property. * * @param value * allowed object is * {@link RecordRef } * */ public void setEndOperation(RecordRef value) { this.endOperation = value; } /** * Gets the value of the componentList property. * * @return * possible object is * {@link WorkOrderIssueComponentList } * */ public WorkOrderIssueComponentList getComponentList() { return componentList; } /** * Sets the value of the componentList property. * * @param value * allowed object is * {@link WorkOrderIssueComponentList } * */ public void setComponentList(WorkOrderIssueComponentList value) { this.componentList = 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; } /** * Gets the value of the internalId property. * * @return * possible object is * {@link String } * */ public String getInternalId() { return internalId; } /** * Sets the value of the internalId property. * * @param value * allowed object is * {@link String } * */ public void setInternalId(String value) { this.internalId = value; } /** * Gets the value of the externalId property. * * @return * possible object is * {@link String } * */ public String getExternalId() { return externalId; } /** * Sets the value of the externalId property. * * @param value * allowed object is * {@link String } * */ public void setExternalId(String value) { this.externalId = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy