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