Netsutie PHP Toolkit
CustomerDeposit.php
Go to the documentation of this file.
1 <?php
8 class CustomerDeposit extends Record {
9 
18  public $createdDate;
19 
29 
38  public $status;
39 
48  public $customer;
49 
58  public $salesOrder;
59 
68  public $customForm;
69 
78  public $payment;
79 
88  public $currency;
89 
98  public $tranDate;
99 
109 
119 
129 
138  public $memo;
139 
149 
159 
169 
178  public $checkNum;
179 
189 
198  public $creditCard;
199 
209 
218  public $ccNumber;
219 
228  public $subsidiary;
229 
238  public $department;
239 
248  public $class;
249 
258  public $location;
259 
269 
279 
288  public $validFrom;
289 
298  public $ccName;
299 
308  public $ccStreet;
309 
318  public $ccZipCode;
319 
328  public $chargeIt;
329 
338  public $ccApproved;
339 
348  public $pnRefNum;
349 
358  public $authCode;
359 
369 
379 
389 
399 
409 
419 
428  public $ignoreAvs;
429 
438  public $account;
439 
448  public $undepFunds;
449 
458  public $applyList;
459 
469 
478  public $internalId;
479 
488  public $externalId;
489 
490 
491 
492  static $paramtypesmap = array(
493 
494  "createdDate" => "dateTime",
495 
496  "lastModifiedDate" => "dateTime",
497 
498  "status" => "string",
499 
500  "customer" => "RecordRef",
501 
502  "salesOrder" => "RecordRef",
503 
504  "customForm" => "RecordRef",
505 
506  "payment" => "float",
507 
508  "currency" => "RecordRef",
509 
510  "tranDate" => "dateTime",
511 
512  "postingPeriod" => "RecordRef",
513 
514  "paymentMethod" => "RecordRef",
515 
516  "ccIsPurchaseCardBin" => "boolean",
517 
518  "memo" => "string",
519 
520  "ccProcessAsPurchaseCard" => "boolean",
521 
522  "currencyName" => "string",
523 
524  "exchangeRate" => "float",
525 
526  "checkNum" => "string",
527 
528  "creditCardProcessor" => "RecordRef",
529 
530  "creditCard" => "RecordRef",
531 
532  "ccSecurityCode" => "string",
533 
534  "ccNumber" => "string",
535 
536  "subsidiary" => "RecordRef",
537 
538  "department" => "RecordRef",
539 
540  "class" => "RecordRef",
541 
542  "location" => "RecordRef",
543 
544  "ccExpireDate" => "dateTime",
545 
546  "debitCardIssueNo" => "string",
547 
548  "validFrom" => "dateTime",
549 
550  "ccName" => "string",
551 
552  "ccStreet" => "string",
553 
554  "ccZipCode" => "string",
555 
556  "chargeIt" => "boolean",
557 
558  "ccApproved" => "boolean",
559 
560  "pnRefNum" => "string",
561 
562  "authCode" => "string",
563 
564  "ccAvsStreetMatch" => "AvsMatchCode",
565 
566  "softDescriptor" => "string",
567 
568  "ccAvsZipMatch" => "AvsMatchCode",
569 
570  "isRecurringPayment" => "boolean",
571 
572  "ccSecurityCodeMatch" => "AvsMatchCode",
573 
574  "threeDStatusCode" => "string",
575 
576  "ignoreAvs" => "boolean",
577 
578  "account" => "RecordRef",
579 
580  "undepFunds" => "boolean",
581 
582  "applyList" => "CustomerDepositApplyList",
583 
584  "customFieldList" => "CustomFieldList",
585 
586  "internalId" => "string",
587 
588  "externalId" => "string",
589 
590  );
591 
592 }
Definition: Record.php:8