Netsutie PHP Toolkit
DepositPayment.php
Go to the documentation of this file.
1 <?php
9 
18  public $deposit;
19 
28  public $id;
29 
38  public $docDate;
39 
48  public $type;
49 
58  public $docNumber;
59 
68  public $memo;
69 
79 
88  public $refNum;
89 
98  public $entity;
99 
108  public $currency;
109 
119 
129 
130 
131 
132  static $paramtypesmap = array(
133 
134  "deposit" => "boolean",
135 
136  "id" => "integer",
137 
138  "docDate" => "dateTime",
139 
140  "type" => "string",
141 
142  "docNumber" => "string",
143 
144  "memo" => "string",
145 
146  "paymentMethod" => "RecordRef",
147 
148  "refNum" => "string",
149 
150  "entity" => "RecordRef",
151 
152  "currency" => "RecordRef",
153 
154  "transactionAmount" => "float",
155 
156  "paymentAmount" => "float",
157 
158  );
159 
160 }