Netsutie PHP Toolkit
VendorPayment.php
Go to the documentation of this file.
1 <?php
8 class VendorPayment extends Record {
9 
18  public $createdDate;
19 
29 
38  public $customForm;
39 
48  public $account;
49 
58  public $balance;
59 
68  public $apAcct;
69 
78  public $entity;
79 
88  public $address;
89 
98  public $tranDate;
99 
108  public $voidJournal;
109 
119 
129 
139 
148  public $toAch;
149 
158  public $toBePrinted;
159 
169 
178  public $tranId;
179 
188  public $total;
189 
198  public $currency;
199 
208  public $department;
209 
218  public $memo;
219 
228  public $subsidiary;
229 
238  public $class;
239 
248  public $location;
249 
258  public $status;
259 
269 
278  public $applyList;
279 
288  public $creditList;
289 
298  public $billPay;
299 
309 
318  public $internalId;
319 
328  public $externalId;
329 
330 
331 
332  static $paramtypesmap = array(
333 
334  "createdDate" => "dateTime",
335 
336  "lastModifiedDate" => "dateTime",
337 
338  "customForm" => "RecordRef",
339 
340  "account" => "RecordRef",
341 
342  "balance" => "float",
343 
344  "apAcct" => "RecordRef",
345 
346  "entity" => "RecordRef",
347 
348  "address" => "string",
349 
350  "tranDate" => "dateTime",
351 
352  "voidJournal" => "RecordRef",
353 
354  "postingPeriod" => "RecordRef",
355 
356  "currencyName" => "string",
357 
358  "exchangeRate" => "float",
359 
360  "toAch" => "boolean",
361 
362  "toBePrinted" => "boolean",
363 
364  "printVoucher" => "boolean",
365 
366  "tranId" => "string",
367 
368  "total" => "float",
369 
370  "currency" => "RecordRef",
371 
372  "department" => "RecordRef",
373 
374  "memo" => "string",
375 
376  "subsidiary" => "RecordRef",
377 
378  "class" => "RecordRef",
379 
380  "location" => "RecordRef",
381 
382  "status" => "string",
383 
384  "transactionNumber" => "string",
385 
386  "applyList" => "VendorPaymentApplyList",
387 
388  "creditList" => "VendorPaymentCreditList",
389 
390  "billPay" => "boolean",
391 
392  "customFieldList" => "CustomFieldList",
393 
394  "internalId" => "string",
395 
396  "externalId" => "string",
397 
398  );
399 
400 }
static $paramtypesmap
Definition: Record.php:8