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

com.bytekast.netsuite.client.Department 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.XmlType;


/**
 * 

Java class for Department complex type. * *

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

 * <complexType name="Department">
 *   <complexContent>
 *     <extension base="{urn:core_2017_1.platform.webservices.netsuite.com}Record">
 *       <sequence>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="includeChildren" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="parent" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="isInactive" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="classTranslationList" type="{urn:accounting_2017_1.lists.webservices.netsuite.com}ClassTranslationList" minOccurs="0"/>
 *         <element name="subsidiaryList" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRefList" 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 = "Department", propOrder = { "name", "includeChildren", "parent", "isInactive", "classTranslationList", "subsidiaryList", "customFieldList" }) public class Department extends Record implements Serializable { protected String name; protected Boolean includeChildren; protected RecordRef parent; protected Boolean isInactive; protected ClassTranslationList classTranslationList; protected RecordRefList subsidiaryList; protected CustomFieldList customFieldList; @XmlAttribute(name = "internalId") protected String internalId; @XmlAttribute(name = "externalId") protected String externalId; /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the includeChildren property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIncludeChildren() { return includeChildren; } /** * Sets the value of the includeChildren property. * * @param value * allowed object is * {@link Boolean } * */ public void setIncludeChildren(Boolean value) { this.includeChildren = value; } /** * Gets the value of the parent property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getParent() { return parent; } /** * Sets the value of the parent property. * * @param value * allowed object is * {@link RecordRef } * */ public void setParent(RecordRef value) { this.parent = value; } /** * Gets the value of the isInactive property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIsInactive() { return isInactive; } /** * Sets the value of the isInactive property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsInactive(Boolean value) { this.isInactive = value; } /** * Gets the value of the classTranslationList property. * * @return * possible object is * {@link ClassTranslationList } * */ public ClassTranslationList getClassTranslationList() { return classTranslationList; } /** * Sets the value of the classTranslationList property. * * @param value * allowed object is * {@link ClassTranslationList } * */ public void setClassTranslationList(ClassTranslationList value) { this.classTranslationList = value; } /** * Gets the value of the subsidiaryList property. * * @return * possible object is * {@link RecordRefList } * */ public RecordRefList getSubsidiaryList() { return subsidiaryList; } /** * Sets the value of the subsidiaryList property. * * @param value * allowed object is * {@link RecordRefList } * */ public void setSubsidiaryList(RecordRefList value) { this.subsidiaryList = 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