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

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


/**
 * 

Java class for Note complex type. * *

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

 * <complexType name="Note">
 *   <complexContent>
 *     <extension base="{urn:core_2017_1.platform.webservices.netsuite.com}Record">
 *       <sequence>
 *         <element name="title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="noteType" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="direction" type="{urn:types.communication_2017_1.general.webservices.netsuite.com}NoteDirection" minOccurs="0"/>
 *         <element name="noteDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="note" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="lastModifiedDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="activity" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="author" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="entity" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="folder" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="item" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="media" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="record" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="recordType" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="topic" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="transaction" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="customForm" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" 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 = "Note", namespace = "urn:communication_2017_1.general.webservices.netsuite.com", propOrder = { "title", "noteType", "direction", "noteDate", "note", "lastModifiedDate", "activity", "author", "entity", "folder", "item", "media", "record", "recordType", "topic", "transaction", "customForm", "customFieldList" }) public class Note extends Record implements Serializable { protected String title; protected RecordRef noteType; @XmlSchemaType(name = "string") protected NoteDirection direction; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar noteDate; protected String note; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar lastModifiedDate; protected RecordRef activity; protected RecordRef author; protected RecordRef entity; protected RecordRef folder; protected RecordRef item; protected RecordRef media; protected RecordRef record; protected RecordRef recordType; protected RecordRef topic; protected RecordRef transaction; protected RecordRef customForm; protected CustomFieldList customFieldList; @XmlAttribute(name = "internalId") protected String internalId; @XmlAttribute(name = "externalId") protected String externalId; /** * Gets the value of the title property. * * @return * possible object is * {@link String } * */ public String getTitle() { return title; } /** * Sets the value of the title property. * * @param value * allowed object is * {@link String } * */ public void setTitle(String value) { this.title = value; } /** * Gets the value of the noteType property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getNoteType() { return noteType; } /** * Sets the value of the noteType property. * * @param value * allowed object is * {@link RecordRef } * */ public void setNoteType(RecordRef value) { this.noteType = value; } /** * Gets the value of the direction property. * * @return * possible object is * {@link NoteDirection } * */ public NoteDirection getDirection() { return direction; } /** * Sets the value of the direction property. * * @param value * allowed object is * {@link NoteDirection } * */ public void setDirection(NoteDirection value) { this.direction = value; } /** * Gets the value of the noteDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getNoteDate() { return noteDate; } /** * Sets the value of the noteDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setNoteDate(XMLGregorianCalendar value) { this.noteDate = value; } /** * Gets the value of the note property. * * @return * possible object is * {@link String } * */ public String getNote() { return note; } /** * Sets the value of the note property. * * @param value * allowed object is * {@link String } * */ public void setNote(String value) { this.note = 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 activity property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getActivity() { return activity; } /** * Sets the value of the activity property. * * @param value * allowed object is * {@link RecordRef } * */ public void setActivity(RecordRef value) { this.activity = value; } /** * Gets the value of the author property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getAuthor() { return author; } /** * Sets the value of the author property. * * @param value * allowed object is * {@link RecordRef } * */ public void setAuthor(RecordRef value) { this.author = value; } /** * Gets the value of the entity property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getEntity() { return entity; } /** * Sets the value of the entity property. * * @param value * allowed object is * {@link RecordRef } * */ public void setEntity(RecordRef value) { this.entity = value; } /** * Gets the value of the folder property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getFolder() { return folder; } /** * Sets the value of the folder property. * * @param value * allowed object is * {@link RecordRef } * */ public void setFolder(RecordRef value) { this.folder = 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 media property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getMedia() { return media; } /** * Sets the value of the media property. * * @param value * allowed object is * {@link RecordRef } * */ public void setMedia(RecordRef value) { this.media = value; } /** * Gets the value of the record property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getRecord() { return record; } /** * Sets the value of the record property. * * @param value * allowed object is * {@link RecordRef } * */ public void setRecord(RecordRef value) { this.record = value; } /** * Gets the value of the recordType property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getRecordType() { return recordType; } /** * Sets the value of the recordType property. * * @param value * allowed object is * {@link RecordRef } * */ public void setRecordType(RecordRef value) { this.recordType = value; } /** * Gets the value of the topic property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getTopic() { return topic; } /** * Sets the value of the topic property. * * @param value * allowed object is * {@link RecordRef } * */ public void setTopic(RecordRef value) { this.topic = value; } /** * Gets the value of the transaction property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getTransaction() { return transaction; } /** * Sets the value of the transaction property. * * @param value * allowed object is * {@link RecordRef } * */ public void setTransaction(RecordRef value) { this.transaction = 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 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