Netsutie PHP Toolkit
ProjectTaskAssignee.php
Go to the documentation of this file.
1 <?php
9 
18  public $resource;
19 
28  public $units;
29 
38  public $serviceItem;
39 
49 
58  public $unitCost;
59 
68  public $unitPrice;
69 
78  public $cost;
79 
88  public $price;
89 
90 
91 
92  static $paramtypesmap = array(
93 
94  "resource" => "RecordRef",
95 
96  "units" => "float",
97 
98  "serviceItem" => "RecordRef",
99 
100  "estimatedWork" => "float",
101 
102  "unitCost" => "float",
103 
104  "unitPrice" => "float",
105 
106  "cost" => "float",
107 
108  "price" => "float",
109 
110  );
111 
112 }