Netsutie PHP Toolkit
CheckItem.php
Go to the documentation of this file.
1 <?php
8 class CheckItem {
9 
18  public $item;
19 
28  public $vendorName;
29 
38  public $line;
39 
48  public $quantity;
49 
58  public $units;
59 
69 
78  public $description;
79 
88  public $binNumbers;
89 
99 
109 
118  public $rate;
119 
128  public $taxCode;
129 
138  public $amount;
139 
148  public $options;
149 
158  public $taxRate1;
159 
168  public $taxRate2;
169 
178  public $department;
179 
188  public $grossAmt;
189 
198  public $class;
199 
208  public $tax1Amt;
209 
218  public $location;
219 
228  public $customer;
229 
238  public $isBillable;
239 
248  public $landedCost;
249 
259 
260 
261 
262  static $paramtypesmap = array(
263 
264  "item" => "RecordRef",
265 
266  "vendorName" => "string",
267 
268  "line" => "integer",
269 
270  "quantity" => "float",
271 
272  "units" => "RecordRef",
273 
274  "inventoryDetail" => "InventoryDetail",
275 
276  "description" => "string",
277 
278  "binNumbers" => "string",
279 
280  "serialNumbers" => "string",
281 
282  "expirationDate" => "dateTime",
283 
284  "rate" => "string",
285 
286  "taxCode" => "RecordRef",
287 
288  "amount" => "float",
289 
290  "options" => "CustomFieldList",
291 
292  "taxRate1" => "float",
293 
294  "taxRate2" => "float",
295 
296  "department" => "RecordRef",
297 
298  "grossAmt" => "float",
299 
300  "class" => "RecordRef",
301 
302  "tax1Amt" => "float",
303 
304  "location" => "RecordRef",
305 
306  "customer" => "RecordRef",
307 
308  "isBillable" => "boolean",
309 
310  "landedCost" => "LandedCost",
311 
312  "customFieldList" => "CustomFieldList",
313 
314  );
315 
316 }
static $paramtypesmap
Definition: CheckItem.php:262
$inventoryDetail
Definition: CheckItem.php:68