Netsutie PHP Toolkit
TimeSheetSearchBasic.php
Go to the documentation of this file.
1 <?php
9 
19 
28  public $employee;
29 
38  public $externalId;
39 
49 
58  public $id;
59 
68  public $internalId;
69 
79 
89 
98  public $totalHours;
99 
109 
110 
111 
112  static $paramtypesmap = array(
113 
114  "approvalStatus" => "SearchMultiSelectField",
115 
116  "employee" => "SearchMultiSelectField",
117 
118  "externalId" => "SearchMultiSelectField",
119 
120  "externalIdString" => "SearchStringField",
121 
122  "id" => "SearchLongField",
123 
124  "internalId" => "SearchMultiSelectField",
125 
126  "internalIdNumber" => "SearchLongField",
127 
128  "timeSheetDate" => "SearchDateField",
129 
130  "totalHours" => "SearchDoubleField",
131 
132  "customFieldList" => "SearchCustomFieldList",
133 
134  );
135 
136 }