Netsutie PHP Toolkit
PayrollItem.php
Go to the documentation of this file.
1 <?php
8 class PayrollItem extends Record {
9 
18  public $subsidiary;
19 
28  public $itemType;
29 
38  public $name;
39 
48  public $vendor;
49 
59 
69 
78  public $employeePaid;
79 
88  public $inactive;
89 
99 
108  public $internalId;
109 
118  public $externalId;
119 
120 
121 
122  static $paramtypesmap = array(
123 
124  "subsidiary" => "RecordRef",
125 
126  "itemType" => "RecordRef",
127 
128  "name" => "string",
129 
130  "vendor" => "RecordRef",
131 
132  "expenseAccount" => "RecordRef",
133 
134  "liabilityAccount" => "RecordRef",
135 
136  "employeePaid" => "boolean",
137 
138  "inactive" => "boolean",
139 
140  "customFieldList" => "CustomFieldList",
141 
142  "internalId" => "string",
143 
144  "externalId" => "string",
145 
146  );
147 
148 }
static $paramtypesmap
Definition: Record.php:8