Netsutie PHP Toolkit
InvoiceTime.php
Go to the documentation of this file.
1 <?php
8 class InvoiceTime {
9 
18  public $apply;
19 
28  public $doc;
29 
38  public $line;
39 
48  public $billedDate;
49 
58  public $employeeDisp;
59 
68  public $itemDisp;
69 
78  public $jobDisp;
79 
88  public $department;
89 
98  public $class;
99 
108  public $location;
109 
118  public $quantity;
119 
128  public $rate;
129 
138  public $unitDisp;
139 
148  public $amount;
149 
158  public $memo;
159 
169 
179 
189 
198  public $grossAmt;
199 
208  public $tax1Amt;
209 
218  public $taxCode;
219 
228  public $taxRate1;
229 
238  public $taxRate2;
239 
240 
241 
242  static $paramtypesmap = array(
243 
244  "apply" => "boolean",
245 
246  "doc" => "integer",
247 
248  "line" => "integer",
249 
250  "billedDate" => "dateTime",
251 
252  "employeeDisp" => "string",
253 
254  "itemDisp" => "string",
255 
256  "jobDisp" => "string",
257 
258  "department" => "string",
259 
260  "class" => "string",
261 
262  "location" => "string",
263 
264  "quantity" => "string",
265 
266  "rate" => "float",
267 
268  "unitDisp" => "string",
269 
270  "amount" => "float",
271 
272  "memo" => "string",
273 
274  "revRecSchedule" => "RecordRef",
275 
276  "revRecStartDate" => "dateTime",
277 
278  "revRecEndDate" => "dateTime",
279 
280  "grossAmt" => "float",
281 
282  "tax1Amt" => "float",
283 
284  "taxCode" => "RecordRef",
285 
286  "taxRate1" => "float",
287 
288  "taxRate2" => "float",
289 
290  );
291 
292 }
static $paramtypesmap