Netsutie PHP Toolkit
InvoiceItemCost.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 $billedDate;
49 
58  public $itemDisp;
59 
68  public $memo;
69 
78  public $jobDisp;
79 
88  public $department;
89 
98  public $class;
99 
108  public $location;
109 
118  public $unitDisp;
119 
128  public $options;
129 
139 
148  public $quantity;
149 
159 
168  public $cost;
169 
178  public $amount;
179 
189 
199 
209 
218  public $grossAmt;
219 
228  public $tax1Amt;
229 
238  public $taxCode;
239 
248  public $taxRate1;
249 
258  public $taxRate2;
259 
260 
261 
262  static $paramtypesmap = array(
263 
264  "apply" => "boolean",
265 
266  "doc" => "integer",
267 
268  "line" => "integer",
269 
270  "billedDate" => "dateTime",
271 
272  "itemDisp" => "string",
273 
274  "memo" => "string",
275 
276  "jobDisp" => "string",
277 
278  "department" => "string",
279 
280  "class" => "string",
281 
282  "location" => "string",
283 
284  "unitDisp" => "string",
285 
286  "options" => "CustomFieldList",
287 
288  "itemCostCount" => "string",
289 
290  "quantity" => "string",
291 
292  "serialNumbers" => "string",
293 
294  "cost" => "float",
295 
296  "amount" => "float",
297 
298  "revRecSchedule" => "RecordRef",
299 
300  "revRecStartDate" => "dateTime",
301 
302  "revRecEndDate" => "dateTime",
303 
304  "grossAmt" => "float",
305 
306  "tax1Amt" => "float",
307 
308  "taxCode" => "RecordRef",
309 
310  "taxRate1" => "float",
311 
312  "taxRate2" => "float",
313 
314  );
315 
316 }