Netsutie PHP Toolkit
VendorReturnAuthorizationItem.php
Go to the documentation of this file.
1 <?php
9 
18  public $item;
19 
28  public $vendorName;
29 
38  public $line;
39 
48  public $orderLine;
49 
58  public $quantity;
59 
68  public $units;
69 
79 
89 
98  public $description;
99 
108  public $binNumbers;
109 
118  public $rate;
119 
128  public $amount;
129 
138  public $taxCode;
139 
148  public $taxRate1;
149 
158  public $taxRate2;
159 
168  public $grossAmt;
169 
178  public $tax1Amt;
179 
188  public $options;
189 
198  public $department;
199 
208  public $class;
209 
218  public $location;
219 
228  public $customer;
229 
238  public $isBillable;
239 
248  public $isClosed;
249 
259 
269 
279 
289 
299 
309 
310 
311 
312  static $paramtypesmap = array(
313 
314  "item" => "RecordRef",
315 
316  "vendorName" => "string",
317 
318  "line" => "integer",
319 
320  "orderLine" => "integer",
321 
322  "quantity" => "float",
323 
324  "units" => "RecordRef",
325 
326  "inventoryDetail" => "InventoryDetail",
327 
328  "serialNumbersList" => "RecordRefList",
329 
330  "description" => "string",
331 
332  "binNumbers" => "string",
333 
334  "rate" => "string",
335 
336  "amount" => "float",
337 
338  "taxCode" => "RecordRef",
339 
340  "taxRate1" => "float",
341 
342  "taxRate2" => "float",
343 
344  "grossAmt" => "float",
345 
346  "tax1Amt" => "float",
347 
348  "options" => "CustomFieldList",
349 
350  "department" => "RecordRef",
351 
352  "class" => "RecordRef",
353 
354  "location" => "RecordRef",
355 
356  "customer" => "RecordRef",
357 
358  "isBillable" => "boolean",
359 
360  "isClosed" => "boolean",
361 
362  "amortizationSched" => "RecordRef",
363 
364  "isDropShipment" => "boolean",
365 
366  "amortizStartDate" => "dateTime",
367 
368  "amortizationEndDate" => "dateTime",
369 
370  "amortizationResidual" => "string",
371 
372  "customFieldList" => "CustomFieldList",
373 
374  );
375 
376 }