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

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

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

 * <complexType name="Topic">
 *   <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="parentTopic" 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="longDescription" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="solutionList" type="{urn:support_2017_1.lists.webservices.netsuite.com}TopicSolutionList" 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 = "Topic", namespace = "urn:support_2017_1.lists.webservices.netsuite.com", propOrder = { "title", "parentTopic", "description", "isInactive", "longDescription", "solutionList" }) public class Topic extends Record implements Serializable { protected String title; protected RecordRef parentTopic; protected String description; protected Boolean isInactive; protected String longDescription; protected TopicSolutionList solutionList; @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 parentTopic property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getParentTopic() { return parentTopic; } /** * Sets the value of the parentTopic property. * * @param value * allowed object is * {@link RecordRef } * */ public void setParentTopic(RecordRef value) { this.parentTopic = 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 longDescription property. * * @return * possible object is * {@link String } * */ public String getLongDescription() { return longDescription; } /** * Sets the value of the longDescription property. * * @param value * allowed object is * {@link String } * */ public void setLongDescription(String value) { this.longDescription = value; } /** * Gets the value of the solutionList property. * * @return * possible object is * {@link TopicSolutionList } * */ public TopicSolutionList getSolutionList() { return solutionList; } /** * Sets the value of the solutionList property. * * @param value * allowed object is * {@link TopicSolutionList } * */ public void setSolutionList(TopicSolutionList value) { this.solutionList = 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