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