Netsutie PHP Toolkit
CustomerPayment.php
Go to the documentation of this file.
1 <?php
8 class CustomerPayment extends Record {
9 
18  public $createdDate;
19 
29 
38  public $customForm;
39 
48  public $arAcct;
49 
58  public $customer;
59 
68  public $balance;
69 
78  public $pending;
79 
88  public $currency;
89 
98  public $payment;
99 
108  public $autoApply;
109 
118  public $tranDate;
119 
128  public $tranId;
129 
139 
149 
159 
168  public $memo;
169 
179 
188  public $checkNum;
189 
199 
209 
218  public $creditCard;
219 
228  public $chargeIt;
229 
238  public $ccNumber;
239 
249 
258  public $ccName;
259 
268  public $ccStreet;
269 
278  public $ccZipCode;
279 
288  public $ccApproved;
289 
298  public $authCode;
299 
309 
319 
329 
339 
348  public $ignoreAvs;
349 
359 
369 
378  public $pnRefNum;
379 
389 
399 
408  public $validFrom;
409 
418  public $undepFunds;
419 
428  public $account;
429 
438  public $total;
439 
448  public $subsidiary;
449 
458  public $applied;
459 
468  public $unapplied;
469 
478  public $class;
479 
488  public $department;
489 
498  public $location;
499 
508  public $status;
509 
518  public $applyList;
519 
528  public $creditList;
529 
538  public $depositList;
539 
549 
558  public $internalId;
559 
568  public $externalId;
569 
570 
571 
572  static $paramtypesmap = array(
573 
574  "createdDate" => "dateTime",
575 
576  "lastModifiedDate" => "dateTime",
577 
578  "customForm" => "RecordRef",
579 
580  "arAcct" => "RecordRef",
581 
582  "customer" => "RecordRef",
583 
584  "balance" => "float",
585 
586  "pending" => "float",
587 
588  "currency" => "RecordRef",
589 
590  "payment" => "float",
591 
592  "autoApply" => "boolean",
593 
594  "tranDate" => "dateTime",
595 
596  "tranId" => "string",
597 
598  "postingPeriod" => "RecordRef",
599 
600  "paymentMethod" => "RecordRef",
601 
602  "ccIsPurchaseCardBin" => "boolean",
603 
604  "memo" => "string",
605 
606  "ccProcessAsPurchaseCard" => "boolean",
607 
608  "checkNum" => "string",
609 
610  "currencyName" => "string",
611 
612  "exchangeRate" => "float",
613 
614  "creditCard" => "RecordRef",
615 
616  "chargeIt" => "boolean",
617 
618  "ccNumber" => "string",
619 
620  "ccExpireDate" => "dateTime",
621 
622  "ccName" => "string",
623 
624  "ccStreet" => "string",
625 
626  "ccZipCode" => "string",
627 
628  "ccApproved" => "boolean",
629 
630  "authCode" => "string",
631 
632  "ccAvsStreetMatch" => "AvsMatchCode",
633 
634  "ccAvsZipMatch" => "AvsMatchCode",
635 
636  "isRecurringPayment" => "boolean",
637 
638  "ccSecurityCode" => "string",
639 
640  "ignoreAvs" => "boolean",
641 
642  "ccSecurityCodeMatch" => "AvsMatchCode",
643 
644  "threeDStatusCode" => "string",
645 
646  "pnRefNum" => "string",
647 
648  "creditCardProcessor" => "RecordRef",
649 
650  "debitCardIssueNo" => "string",
651 
652  "validFrom" => "dateTime",
653 
654  "undepFunds" => "boolean",
655 
656  "account" => "RecordRef",
657 
658  "total" => "float",
659 
660  "subsidiary" => "RecordRef",
661 
662  "applied" => "float",
663 
664  "unapplied" => "float",
665 
666  "class" => "RecordRef",
667 
668  "department" => "RecordRef",
669 
670  "location" => "RecordRef",
671 
672  "status" => "string",
673 
674  "applyList" => "CustomerPaymentApplyList",
675 
676  "creditList" => "CustomerPaymentCreditList",
677 
678  "depositList" => "CustomerPaymentDepositList",
679 
680  "customFieldList" => "CustomFieldList",
681 
682  "internalId" => "string",
683 
684  "externalId" => "string",
685 
686  );
687 
688 }
Definition: Record.php:8