Netsutie PHP Toolkit
CustomRecordSearchBasic.php
Go to the documentation of this file.
1 <?php
9 
18  public $recType;
19 
29 
38  public $created;
39 
48  public $externalId;
49 
59 
68  public $id;
69 
78  public $internalId;
79 
89 
98  public $isInactive;
99 
109 
119 
128  public $name;
129 
138  public $owner;
139 
149 
150 
151 
152  static $paramtypesmap = array(
153 
154  "recType" => "RecordRef",
155 
156  "availableOffline" => "SearchBooleanField",
157 
158  "created" => "SearchDateField",
159 
160  "externalId" => "SearchMultiSelectField",
161 
162  "externalIdString" => "SearchStringField",
163 
164  "id" => "SearchLongField",
165 
166  "internalId" => "SearchMultiSelectField",
167 
168  "internalIdNumber" => "SearchLongField",
169 
170  "isInactive" => "SearchBooleanField",
171 
172  "lastModified" => "SearchDateField",
173 
174  "lastModifiedBy" => "SearchMultiSelectField",
175 
176  "name" => "SearchStringField",
177 
178  "owner" => "SearchMultiSelectField",
179 
180  "customFieldList" => "SearchCustomFieldList",
181 
182  );
183 
184 }