Netsutie PHP Toolkit
TimeSheet.php
Go to the documentation of this file.
1 <?php
8 class TimeSheet extends Record {
9 
18  public $customForm;
19 
28  public $employee;
29 
38  public $startDate;
39 
48  public $endDate;
49 
58  public $totalHours;
59 
69 
78  public $subsidiary;
79 
88  public $timeGridList;
89 
99 
108  public $internalId;
109 
118  public $externalId;
119 
120 
121 
122  static $paramtypesmap = array(
123 
124  "customForm" => "RecordRef",
125 
126  "employee" => "RecordRef",
127 
128  "startDate" => "dateTime",
129 
130  "endDate" => "dateTime",
131 
132  "totalHours" => "Duration",
133 
134  "approvalStatus" => "RecordRef",
135 
136  "subsidiary" => "RecordRef",
137 
138  "timeGridList" => "TimeSheetTimeGridList",
139 
140  "customFieldList" => "CustomFieldList",
141 
142  "internalId" => "string",
143 
144  "externalId" => "string",
145 
146  );
147 
148 }
static $paramtypesmap
Definition: TimeSheet.php:122
$customFieldList
Definition: TimeSheet.php:98
Definition: Record.php:8