Netsutie PHP Toolkit
VendorPaymentApply.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 $job;
49 
58  public $applyDate;
59 
68  public $type;
69 
78  public $refNum;
79 
88  public $total;
89 
98  public $due;
99 
108  public $currency;
109 
118  public $discDate;
119 
128  public $discAmt;
129 
138  public $disc;
139 
148  public $amount;
149 
150 
151 
152  static $paramtypesmap = array(
153 
154  "apply" => "boolean",
155 
156  "doc" => "integer",
157 
158  "line" => "integer",
159 
160  "job" => "string",
161 
162  "applyDate" => "dateTime",
163 
164  "type" => "string",
165 
166  "refNum" => "string",
167 
168  "total" => "float",
169 
170  "due" => "float",
171 
172  "currency" => "string",
173 
174  "discDate" => "dateTime",
175 
176  "discAmt" => "float",
177 
178  "disc" => "float",
179 
180  "amount" => "float",
181 
182  );
183 
184 }