Netsutie PHP Toolkit
PaycheckJournal.php
Go to the documentation of this file.
1 <?php
8 class PaycheckJournal extends Record {
9 
18  public $subsidiary;
19 
28  public $currency;
29 
38  public $exchangeRate;
39 
48  public $createdDate;
49 
59 
68  public $customForm;
69 
78  public $tranId;
79 
88  public $employee;
89 
98  public $tranDate;
99 
109 
118  public $account;
119 
128  public $department;
129 
138  public $class;
139 
148  public $location;
149 
159 
169 
179 
189 
198  public $earningList;
199 
209 
218  public $internalId;
219 
228  public $externalId;
229 
230 
231 
232  static $paramtypesmap = array(
233 
234  "subsidiary" => "RecordRef",
235 
236  "currency" => "RecordRef",
237 
238  "exchangeRate" => "float",
239 
240  "createdDate" => "dateTime",
241 
242  "lastModifiedDate" => "dateTime",
243 
244  "customForm" => "RecordRef",
245 
246  "tranId" => "string",
247 
248  "employee" => "RecordRef",
249 
250  "tranDate" => "dateTime",
251 
252  "postingPeriod" => "RecordRef",
253 
254  "account" => "RecordRef",
255 
256  "department" => "RecordRef",
257 
258  "class" => "RecordRef",
259 
260  "location" => "RecordRef",
261 
262  "companyContributionList" => "PaycheckJournalCompanyContributionList",
263 
264  "deductionList" => "PaycheckJournalDeductionList",
265 
266  "employeeTaxList" => "PaycheckJournalEmployeeTaxList",
267 
268  "companyTaxList" => "PaycheckJournalCompanyTaxList",
269 
270  "earningList" => "PaycheckJournalEarningList",
271 
272  "customFieldList" => "CustomFieldList",
273 
274  "internalId" => "string",
275 
276  "externalId" => "string",
277 
278  );
279 
280 }
Definition: Record.php:8