Netsutie PHP Toolkit
ResourceAllocationSearchBasic.php
Go to the documentation of this file.
1 <?php
9 
19 
29 
39 
48  public $customer;
49 
58  public $endDate;
59 
68  public $externalId;
69 
79 
88  public $internalId;
89 
99 
109 
118  public $notes;
119 
128  public $numberHours;
129 
139 
148  public $project;
149 
158  public $requestedBy;
159 
168  public $resource;
169 
178  public $startDate;
179 
189 
190 
191 
192  static $paramtypesmap = array(
193 
194  "allocationType" => "SearchMultiSelectField",
195 
196  "allocationUnit" => "SearchEnumMultiSelectField",
197 
198  "approvalStatus" => "SearchEnumMultiSelectField",
199 
200  "customer" => "SearchMultiSelectField",
201 
202  "endDate" => "SearchDateField",
203 
204  "externalId" => "SearchMultiSelectField",
205 
206  "externalIdString" => "SearchStringField",
207 
208  "internalId" => "SearchMultiSelectField",
209 
210  "internalIdNumber" => "SearchLongField",
211 
212  "nextApprover" => "SearchMultiSelectField",
213 
214  "notes" => "SearchStringField",
215 
216  "numberHours" => "SearchDoubleField",
217 
218  "percentOfTime" => "SearchDoubleField",
219 
220  "project" => "SearchMultiSelectField",
221 
222  "requestedBy" => "SearchMultiSelectField",
223 
224  "resource" => "SearchMultiSelectField",
225 
226  "startDate" => "SearchDateField",
227 
228  "customFieldList" => "SearchCustomFieldList",
229 
230  );
231 
232 }