Netsutie PHP Toolkit
TopicSearchBasic.php
Go to the documentation of this file.
1 <?php
9 
18  public $description;
19 
28  public $externalId;
29 
39 
48  public $internalId;
49 
59 
68  public $isInactive;
69 
78  public $name;
79 
80 
81 
82  static $paramtypesmap = array(
83 
84  "description" => "SearchStringField",
85 
86  "externalId" => "SearchMultiSelectField",
87 
88  "externalIdString" => "SearchStringField",
89 
90  "internalId" => "SearchMultiSelectField",
91 
92  "internalIdNumber" => "SearchLongField",
93 
94  "isInactive" => "SearchBooleanField",
95 
96  "name" => "SearchStringField",
97 
98  );
99 
100 }