Netsutie PHP Toolkit
PhoneCall.php
Go to the documentation of this file.
1 <?php
8 class PhoneCall extends Record {
9 
18  public $message;
19 
28  public $company;
29 
38  public $contact;
39 
48  public $supportCase;
49 
58  public $transaction;
59 
68  public $milestone;
69 
78  public $customForm;
79 
88  public $title;
89 
98  public $owner;
99 
108  public $assigned;
109 
118  public $sendEmail;
119 
128  public $startDate;
129 
138  public $endDate;
139 
148  public $timedEvent;
149 
159 
168  public $phone;
169 
178  public $status;
179 
188  public $priority;
189 
198  public $accessLevel;
199 
209 
219 
228  public $createdDate;
229 
239 
248  public $contactList;
249 
259 
269 
278  public $internalId;
279 
288  public $externalId;
289 
290 
291 
292  static $paramtypesmap = array(
293 
294  "message" => "string",
295 
296  "company" => "RecordRef",
297 
298  "contact" => "RecordRef",
299 
300  "supportCase" => "RecordRef",
301 
302  "transaction" => "RecordRef",
303 
304  "milestone" => "RecordRef",
305 
306  "customForm" => "RecordRef",
307 
308  "title" => "string",
309 
310  "owner" => "RecordRef",
311 
312  "assigned" => "RecordRef",
313 
314  "sendEmail" => "boolean",
315 
316  "startDate" => "dateTime",
317 
318  "endDate" => "dateTime",
319 
320  "timedEvent" => "boolean",
321 
322  "completedDate" => "dateTime",
323 
324  "phone" => "string",
325 
326  "status" => "PhoneCallStatus",
327 
328  "priority" => "PhoneCallPriority",
329 
330  "accessLevel" => "boolean",
331 
332  "reminderType" => "PhoneCallReminderType",
333 
334  "reminderMinutes" => "PhoneCallReminderMinutes",
335 
336  "createdDate" => "dateTime",
337 
338  "lastModifiedDate" => "dateTime",
339 
340  "contactList" => "PhoneCallContactList",
341 
342  "timeItemList" => "PhoneCallTimeItemList",
343 
344  "customFieldList" => "CustomFieldList",
345 
346  "internalId" => "string",
347 
348  "externalId" => "string",
349 
350  );
351 
352 }
static $paramtypesmap
Definition: PhoneCall.php:292
Definition: Record.php:8