Netsutie PHP Toolkit
VendorReturnAuthorizationExpense.php
Go to the documentation of this file.
1 <?php
9 
18  public $orderLine;
19 
28  public $line;
29 
38  public $category;
39 
48  public $account;
49 
58  public $amount;
59 
68  public $taxCode;
69 
78  public $taxRate1;
79 
88  public $taxRate2;
89 
98  public $tax1Amt;
99 
108  public $grossAmt;
109 
118  public $memo;
119 
128  public $department;
129 
138  public $class;
139 
148  public $location;
149 
158  public $customer;
159 
168  public $isBillable;
169 
179 
189 
199 
209 
219 
220 
221 
222  static $paramtypesmap = array(
223 
224  "orderLine" => "integer",
225 
226  "line" => "integer",
227 
228  "category" => "RecordRef",
229 
230  "account" => "RecordRef",
231 
232  "amount" => "float",
233 
234  "taxCode" => "RecordRef",
235 
236  "taxRate1" => "float",
237 
238  "taxRate2" => "float",
239 
240  "tax1Amt" => "float",
241 
242  "grossAmt" => "float",
243 
244  "memo" => "string",
245 
246  "department" => "RecordRef",
247 
248  "class" => "RecordRef",
249 
250  "location" => "RecordRef",
251 
252  "customer" => "RecordRef",
253 
254  "isBillable" => "boolean",
255 
256  "amortizationSched" => "RecordRef",
257 
258  "amortizStartDate" => "dateTime",
259 
260  "amortizationEndDate" => "dateTime",
261 
262  "amortizationResidual" => "string",
263 
264  "customFieldList" => "CustomFieldList",
265 
266  );
267 
268 }