Netsutie PHP Toolkit
TimeItem.php
Go to the documentation of this file.
1 <?php
8 class TimeItem {
9 
18  public $id;
19 
28  public $employee;
29 
38  public $timeType;
39 
48  public $tranDate;
49 
58  public $customer;
59 
68  public $isBillable;
69 
78  public $payrollItem;
79 
88  public $item;
89 
99 
109 
118  public $department;
119 
128  public $class;
129 
138  public $location;
139 
148  public $hours;
149 
158  public $price;
159 
168  public $rate;
169 
179 
188  public $hoursTotal;
189 
199 
208  public $memo;
209 
218  public $isUtilized;
219 
229 
238  public $isExempt;
239 
240 
241 
242  static $paramtypesmap = array(
243 
244  "id" => "integer",
245 
246  "employee" => "RecordRef",
247 
248  "timeType" => "TimeItemTimeType",
249 
250  "tranDate" => "dateTime",
251 
252  "customer" => "RecordRef",
253 
254  "isBillable" => "boolean",
255 
256  "payrollItem" => "RecordRef",
257 
258  "item" => "RecordRef",
259 
260  "temporaryLocalJurisdiction" => "RecordRef",
261 
262  "temporaryStateJurisdiction" => "RecordRef",
263 
264  "department" => "RecordRef",
265 
266  "class" => "RecordRef",
267 
268  "location" => "RecordRef",
269 
270  "hours" => "Duration",
271 
272  "price" => "RecordRef",
273 
274  "rate" => "float",
275 
276  "overrideRate" => "boolean",
277 
278  "hoursTotal" => "Duration",
279 
280  "caseTaskEvent" => "RecordRef",
281 
282  "memo" => "string",
283 
284  "isUtilized" => "boolean",
285 
286  "isProductive" => "boolean",
287 
288  "isExempt" => "boolean",
289 
290  );
291 
292 }
$temporaryStateJurisdiction
Definition: TimeItem.php:108
$payrollItem
Definition: TimeItem.php:78
$caseTaskEvent
Definition: TimeItem.php:198
$temporaryLocalJurisdiction
Definition: TimeItem.php:98
static $paramtypesmap
Definition: TimeItem.php:242