Netsutie PHP Toolkit
PaycheckJournalEarning.php
Go to the documentation of this file.
1 <?php
9 
18  public $id;
19 
28  public $payrollItem;
29 
38  public $hours;
39 
48  public $amount;
49 
58  public $department;
59 
68  public $class;
69 
78  public $location;
79 
89 
90 
91 
92  static $paramtypesmap = array(
93 
94  "id" => "integer",
95 
96  "payrollItem" => "RecordRef",
97 
98  "hours" => "float",
99 
100  "amount" => "float",
101 
102  "department" => "RecordRef",
103 
104  "class" => "RecordRef",
105 
106  "location" => "RecordRef",
107 
108  "customFieldList" => "CustomFieldList",
109 
110  );
111 
112 }