Netsutie PHP Toolkit
ClassificationSearchBasic.php
Go to the documentation of this file.
1 <?php
9 
18  public $externalId;
19 
29 
38  public $internalId;
39 
49 
58  public $isInactive;
59 
68  public $name;
69 
79 
88  public $subsidiary;
89 
99 
100 
101 
102  static $paramtypesmap = array(
103 
104  "externalId" => "SearchMultiSelectField",
105 
106  "externalIdString" => "SearchStringField",
107 
108  "internalId" => "SearchMultiSelectField",
109 
110  "internalIdNumber" => "SearchLongField",
111 
112  "isInactive" => "SearchBooleanField",
113 
114  "name" => "SearchStringField",
115 
116  "nameNoHierarchy" => "SearchStringField",
117 
118  "subsidiary" => "SearchMultiSelectField",
119 
120  "customFieldList" => "SearchCustomFieldList",
121 
122  );
123 
124 }