Netsutie PHP Toolkit
Topic.php
Go to the documentation of this file.
1 <?php
8 class Topic extends Record {
9 
18  public $title;
19 
28  public $parentTopic;
29 
38  public $description;
39 
48  public $isInactive;
49 
59 
68  public $solutionList;
69 
78  public $internalId;
79 
88  public $externalId;
89 
90 
91 
92  static $paramtypesmap = array(
93 
94  "title" => "string",
95 
96  "parentTopic" => "RecordRef",
97 
98  "description" => "string",
99 
100  "isInactive" => "boolean",
101 
102  "longDescription" => "string",
103 
104  "solutionList" => "TopicSolutionList",
105 
106  "internalId" => "string",
107 
108  "externalId" => "string",
109 
110  );
111 
112 }
$parentTopic
Definition: Topic.php:28
$externalId
Definition: Topic.php:88
Definition: Topic.php:8
$longDescription
Definition: Topic.php:58
$isInactive
Definition: Topic.php:48
$internalId
Definition: Topic.php:78
$solutionList
Definition: Topic.php:68
$description
Definition: Topic.php:38
$title
Definition: Topic.php:18
static $paramtypesmap
Definition: Topic.php:92
Definition: Record.php:8