Netsutie PHP Toolkit
CustomerRefundDeposit.php
Go to the documentation of this file.
1 <?php
9 
18  public $apply;
19 
28  public $doc;
29 
38  public $line;
39 
48  public $depositDate;
49 
58  public $refNum;
59 
68  public $total;
69 
78  public $remaining;
79 
88  public $currency;
89 
98  public $amount;
99 
100 
101 
102  static $paramtypesmap = array(
103 
104  "apply" => "boolean",
105 
106  "doc" => "integer",
107 
108  "line" => "integer",
109 
110  "depositDate" => "dateTime",
111 
112  "refNum" => "string",
113 
114  "total" => "float",
115 
116  "remaining" => "float",
117 
118  "currency" => "string",
119 
120  "amount" => "float",
121 
122  );
123 
124 }