Netsutie PHP Toolkit
CalendarEvent.php
Go to the documentation of this file.
1 <?php
8 class CalendarEvent extends Record {
9 
18  public $company;
19 
28  public $contact;
29 
38  public $supportCase;
39 
48  public $transaction;
49 
58  public $period;
59 
68  public $frequency;
69 
79 
89 
99 
109 
118  public $endByDate;
119 
128  public $noEndDate;
129 
138  public $sendEmail;
139 
148  public $customForm;
149 
158  public $title;
159 
168  public $recurrence;
169 
178  public $location;
179 
188  public $startDate;
189 
198  public $allDayEvent;
199 
208  public $timedEvent;
209 
219 
229 
238  public $status;
239 
248  public $accessLevel;
249 
258  public $organizer;
259 
268  public $message;
269 
278  public $createdDate;
279 
288  public $endDate;
289 
299 
309 
318  public $owner;
319 
329 
339 
349 
359 
368  public $internalId;
369 
378  public $externalId;
379 
380 
381 
382  static $paramtypesmap = array(
383 
384  "company" => "RecordRef",
385 
386  "contact" => "RecordRef",
387 
388  "supportCase" => "RecordRef",
389 
390  "transaction" => "RecordRef",
391 
392  "period" => "integer",
393 
394  "frequency" => "RecurrenceFrequency",
395 
396  "recurrenceDowMaskList" => "RecurrenceDowMaskList",
397 
398  "recurrenceDow" => "RecurrenceDow",
399 
400  "recurrenceDowim" => "RecurrenceDowim",
401 
402  "seriesStartDate" => "dateTime",
403 
404  "endByDate" => "dateTime",
405 
406  "noEndDate" => "boolean",
407 
408  "sendEmail" => "boolean",
409 
410  "customForm" => "RecordRef",
411 
412  "title" => "string",
413 
414  "recurrence" => "string",
415 
416  "location" => "string",
417 
418  "startDate" => "dateTime",
419 
420  "allDayEvent" => "boolean",
421 
422  "timedEvent" => "boolean",
423 
424  "reminderType" => "CalendarEventReminderType",
425 
426  "reminderMinutes" => "CalendarEventReminderMinutes",
427 
428  "status" => "CalendarEventStatus",
429 
430  "accessLevel" => "CalendarEventAccessLevel",
431 
432  "organizer" => "RecordRef",
433 
434  "message" => "string",
435 
436  "createdDate" => "dateTime",
437 
438  "endDate" => "dateTime",
439 
440  "exclusionDateList" => "ExclusionDateList",
441 
442  "lastModifiedDate" => "dateTime",
443 
444  "owner" => "RecordRef",
445 
446  "attendeeList" => "CalendarEventAttendeeList",
447 
448  "resourceList" => "CalendarEventResourceList",
449 
450  "timeItemList" => "CalendarEventTimeItemList",
451 
452  "customFieldList" => "CustomFieldList",
453 
454  "internalId" => "string",
455 
456  "externalId" => "string",
457 
458  );
459 
460 }
static $paramtypesmap
Definition: Record.php:8