Netsutie PHP Toolkit
VendorCredit.php
Go to the documentation of this file.
1 <?php
8 class VendorCredit extends Record {
9 
18  public $createdDate;
19 
29 
38  public $customForm;
39 
48  public $account;
49 
58  public $unApplied;
59 
68  public $autoApply;
69 
78  public $applied;
79 
89 
98  public $tranId;
99 
108  public $createdFrom;
109 
118  public $entity;
119 
128  public $total;
129 
138  public $userTotal;
139 
148  public $currency;
149 
159 
168  public $tranDate;
169 
179 
189 
198  public $memo;
199 
208  public $department;
209 
218  public $class;
219 
228  public $location;
229 
238  public $subsidiary;
239 
248  public $expenseList;
249 
258  public $itemList;
259 
268  public $applyList;
269 
279 
288  public $internalId;
289 
298  public $externalId;
299 
300 
301 
302  static $paramtypesmap = array(
303 
304  "createdDate" => "dateTime",
305 
306  "lastModifiedDate" => "dateTime",
307 
308  "customForm" => "RecordRef",
309 
310  "account" => "RecordRef",
311 
312  "unApplied" => "float",
313 
314  "autoApply" => "boolean",
315 
316  "applied" => "float",
317 
318  "transactionNumber" => "string",
319 
320  "tranId" => "string",
321 
322  "createdFrom" => "RecordRef",
323 
324  "entity" => "RecordRef",
325 
326  "total" => "float",
327 
328  "userTotal" => "float",
329 
330  "currency" => "RecordRef",
331 
332  "currencyName" => "string",
333 
334  "tranDate" => "dateTime",
335 
336  "exchangeRate" => "float",
337 
338  "postingPeriod" => "RecordRef",
339 
340  "memo" => "string",
341 
342  "department" => "RecordRef",
343 
344  "class" => "RecordRef",
345 
346  "location" => "RecordRef",
347 
348  "subsidiary" => "RecordRef",
349 
350  "expenseList" => "VendorCreditExpenseList",
351 
352  "itemList" => "VendorCreditItemList",
353 
354  "applyList" => "VendorCreditApplyList",
355 
356  "customFieldList" => "CustomFieldList",
357 
358  "internalId" => "string",
359 
360  "externalId" => "string",
361 
362  );
363 
364 }
static $paramtypesmap
Definition: Record.php:8