com.bytekast.netsuite.client.Folder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of netsuite-suitetalk Show documentation
Show all versions of netsuite-suitetalk Show documentation
Client API for NetSuite Suitetalk Web Services
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;
/**
* Java class for Folder complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Folder">
* <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="department" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
* <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="isInactive" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="isPrivate" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="bundleable" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="hideInBundle" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="isOnline" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="group" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
* <element name="parent" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
* <element name="folderType" type="{urn:types.filecabinet_2017_1.documents.webservices.netsuite.com}FolderFolderType" 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="subsidiary" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" 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 = "Folder", namespace = "urn:filecabinet_2017_1.documents.webservices.netsuite.com", propOrder = {
"name",
"department",
"description",
"isInactive",
"isPrivate",
"bundleable",
"hideInBundle",
"isOnline",
"group",
"parent",
"folderType",
"clazz",
"location",
"subsidiary"
})
public class Folder
extends Record
implements Serializable
{
protected String name;
protected RecordRef department;
protected String description;
protected Boolean isInactive;
protected Boolean isPrivate;
protected Boolean bundleable;
protected Boolean hideInBundle;
protected Boolean isOnline;
protected RecordRef group;
protected RecordRef parent;
@XmlSchemaType(name = "string")
protected FolderFolderType folderType;
@XmlElement(name = "class")
protected RecordRef clazz;
protected RecordRef location;
protected RecordRef subsidiary;
@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 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 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 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 isPrivate property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsPrivate() {
return isPrivate;
}
/**
* Sets the value of the isPrivate property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsPrivate(Boolean value) {
this.isPrivate = value;
}
/**
* Gets the value of the bundleable property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isBundleable() {
return bundleable;
}
/**
* Sets the value of the bundleable property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setBundleable(Boolean value) {
this.bundleable = value;
}
/**
* Gets the value of the hideInBundle property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isHideInBundle() {
return hideInBundle;
}
/**
* Sets the value of the hideInBundle property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setHideInBundle(Boolean value) {
this.hideInBundle = value;
}
/**
* Gets the value of the isOnline property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsOnline() {
return isOnline;
}
/**
* Sets the value of the isOnline property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsOnline(Boolean value) {
this.isOnline = value;
}
/**
* Gets the value of the group property.
*
* @return
* possible object is
* {@link RecordRef }
*
*/
public RecordRef getGroup() {
return group;
}
/**
* Sets the value of the group property.
*
* @param value
* allowed object is
* {@link RecordRef }
*
*/
public void setGroup(RecordRef value) {
this.group = 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 folderType property.
*
* @return
* possible object is
* {@link FolderFolderType }
*
*/
public FolderFolderType getFolderType() {
return folderType;
}
/**
* Sets the value of the folderType property.
*
* @param value
* allowed object is
* {@link FolderFolderType }
*
*/
public void setFolderType(FolderFolderType value) {
this.folderType = 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 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 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;
}
}