Netsutie PHP Toolkit
Duration.php
Go to the documentation of this file.
1 <?php
8 class Duration {
9 
18  public $timeSpan;
19 
28  public $unit;
29 
30 
31 
32  static $paramtypesmap = array(
33 
34  "timeSpan" => "float",
35 
36  "unit" => "DurationUnit",
37 
38  );
39 
40 }
static $paramtypesmap
Definition: Duration.php:32