Netsutie PHP Toolkit
ResourceAllocation.php
Go to the documentation of this file.
1 <?php
8 class ResourceAllocation extends Record {
9 
18  public $requestedby;
19 
29 
38  public $nextApprover;
39 
49 
58  public $project;
59 
68  public $notes;
69 
78  public $startDate;
79 
88  public $endDate;
89 
99 
109 
118  public $numberHours;
119 
129 
139 
148  public $customForm;
149 
159 
168  public $internalId;
169 
178  public $externalId;
179 
180 
181 
182  static $paramtypesmap = array(
183 
184  "requestedby" => "RecordRef",
185 
186  "approvalStatus" => "ResourceAllocationApprovalStatus",
187 
188  "nextApprover" => "RecordRef",
189 
190  "allocationResource" => "RecordRef",
191 
192  "project" => "RecordRef",
193 
194  "notes" => "string",
195 
196  "startDate" => "dateTime",
197 
198  "endDate" => "dateTime",
199 
200  "allocationAmount" => "float",
201 
202  "allocationUnit" => "ResourceAllocationAllocationUnit",
203 
204  "numberHours" => "float",
205 
206  "percentOfTime" => "float",
207 
208  "allocationType" => "RecordRef",
209 
210  "customForm" => "RecordRef",
211 
212  "customFieldList" => "CustomFieldList",
213 
214  "internalId" => "string",
215 
216  "externalId" => "string",
217 
218  );
219 
220 }
Definition: Record.php:8