Netsutie PHP Toolkit
VendorCreditItem.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 $rate;
109 
118  public $amount;
119 
128  public $binNumbers;
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 
249 
259 
269 
279 
289 
290 
291 
292  static $paramtypesmap = array(
293 
294  "item" => "RecordRef",
295 
296  "vendorName" => "string",
297 
298  "line" => "integer",
299 
300  "orderLine" => "integer",
301 
302  "quantity" => "float",
303 
304  "units" => "RecordRef",
305 
306  "inventoryDetail" => "InventoryDetail",
307 
308  "serialNumbersList" => "RecordRefList",
309 
310  "description" => "string",
311 
312  "rate" => "string",
313 
314  "amount" => "float",
315 
316  "binNumbers" => "string",
317 
318  "taxCode" => "RecordRef",
319 
320  "taxRate1" => "float",
321 
322  "taxRate2" => "float",
323 
324  "grossAmt" => "float",
325 
326  "tax1Amt" => "float",
327 
328  "options" => "CustomFieldList",
329 
330  "department" => "RecordRef",
331 
332  "class" => "RecordRef",
333 
334  "location" => "RecordRef",
335 
336  "customer" => "RecordRef",
337 
338  "isBillable" => "boolean",
339 
340  "amortizationSched" => "RecordRef",
341 
342  "amortizStartDate" => "dateTime",
343 
344  "amortizationEndDate" => "dateTime",
345 
346  "amortizationResidual" => "string",
347 
348  "customFieldList" => "CustomFieldList",
349 
350  );
351 
352 }