Netsutie PHP Toolkit
CustomerRefund.php
Go to the documentation of this file.
1 <?php
8 class CustomerRefund extends Record {
9 
18  public $createdDate;
19 
29 
38  public $status;
39 
49 
58  public $customer;
59 
68  public $customForm;
69 
78  public $balance;
79 
88  public $arAcct;
89 
98  public $currencyName;
99 
109 
118  public $address;
119 
128  public $total;
129 
138  public $currency;
139 
148  public $tranDate;
149 
158  public $voidJournal;
159 
169 
178  public $memo;
179 
189 
198  public $account;
199 
208  public $toBePrinted;
209 
218  public $tranId;
219 
229 
239 
248  public $chargeIt;
249 
258  public $pnRefNum;
259 
268  public $validFrom;
269 
278  public $subsidiary;
279 
288  public $department;
289 
298  public $class;
299 
308  public $location;
309 
318  public $creditCard;
319 
329 
338  public $ccNumber;
339 
349 
359 
368  public $ccName;
369 
378  public $ccStreet;
379 
388  public $ccZipCode;
389 
398  public $ccApproved;
399 
408  public $applyList;
409 
418  public $depositList;
419 
429 
438  public $internalId;
439 
448  public $externalId;
449 
450 
451 
452  static $paramtypesmap = array(
453 
454  "createdDate" => "dateTime",
455 
456  "lastModifiedDate" => "dateTime",
457 
458  "status" => "string",
459 
460  "transactionNumber" => "string",
461 
462  "customer" => "RecordRef",
463 
464  "customForm" => "RecordRef",
465 
466  "balance" => "float",
467 
468  "arAcct" => "RecordRef",
469 
470  "currencyName" => "string",
471 
472  "exchangeRate" => "float",
473 
474  "address" => "string",
475 
476  "total" => "float",
477 
478  "currency" => "RecordRef",
479 
480  "tranDate" => "dateTime",
481 
482  "voidJournal" => "RecordRef",
483 
484  "postingPeriod" => "RecordRef",
485 
486  "memo" => "string",
487 
488  "paymentMethod" => "RecordRef",
489 
490  "account" => "RecordRef",
491 
492  "toBePrinted" => "boolean",
493 
494  "tranId" => "string",
495 
496  "debitCardIssueNo" => "string",
497 
498  "creditCardProcessor" => "RecordRef",
499 
500  "chargeIt" => "boolean",
501 
502  "pnRefNum" => "string",
503 
504  "validFrom" => "dateTime",
505 
506  "subsidiary" => "RecordRef",
507 
508  "department" => "RecordRef",
509 
510  "class" => "RecordRef",
511 
512  "location" => "RecordRef",
513 
514  "creditCard" => "RecordRef",
515 
516  "ccIsPurchaseCardBin" => "boolean",
517 
518  "ccNumber" => "string",
519 
520  "ccProcessAsPurchaseCard" => "boolean",
521 
522  "ccExpireDate" => "dateTime",
523 
524  "ccName" => "string",
525 
526  "ccStreet" => "string",
527 
528  "ccZipCode" => "string",
529 
530  "ccApproved" => "boolean",
531 
532  "applyList" => "CustomerRefundApplyList",
533 
534  "depositList" => "CustomerRefundDepositList",
535 
536  "customFieldList" => "CustomFieldList",
537 
538  "internalId" => "string",
539 
540  "externalId" => "string",
541 
542  );
543 
544 }
Definition: Record.php:8