????JFIF??x?x????'
| Server IP : 79.136.114.73 / Your IP : 216.73.216.55 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/icad.astacus.se/sharepoint/vendor/vgrem/php-spo/src/OutlookServices/ |
Upload File : |
<?php
/**
* This file was generated by phpSPO model generator 2020-04-25T20:53:05+00:00 16.0.20008.12009
*/
namespace Office365\OutlookServices;
use Office365\Runtime\ResourcePath;
/**
* An event in a calendar.
*/
class Event extends Item
{
/**
* @var string
*/
public $Subject;
/**
* The body of the message associated with the event.
* @var ItemBody
*/
public $Body;
/**
* The collection of attendees for the event.
* @var array
*/
public $Attendees;
/**
* The location of the event.
* @var Location
*/
public $Location;
/**
* The status to show: Free = 0, Tentative = 1, Busy = 2, Oof = 3, WorkingElsewhere = 4, Unknown = -1.
* @var int
*/
public $ShowAs;
/**
* The start time of the event.
* @var DateTimeTimeZone
*/
public $Start;
/**
* The end time of the event.
* @var DateTimeTimeZone
*/
public $End;
/**
* The event type: SingleInstance = 0, Occurrence = 1, Exception = 2, SeriesMaster = 3.
* @var int
*/
public $Type;
/**
* The URL to open the event in Outlook Web App.
* @var string
*/
public $WebLink;
/**
* @var string
*/
public $StartTimeZone;
/**
* @var string
*/
public $EndTimeZone;
/**
* @return ResponseStatus
*/
public function getResponseStatus()
{
if (!$this->isPropertyAvailable("ResponseStatus")) {
return null;
}
return $this->getProperty("ResponseStatus");
}
/**
* @var ResponseStatus
*/
public function setResponseStatus($value)
{
$this->setProperty("ResponseStatus", $value, true);
}
/**
* @var string
*/
public $iCalUId;
/**
* @var integer
*/
public $Reminder;
/**
* @var bool
*/
public $HasAttachments;
/**
* @return ItemBody
*/
public function getBody()
{
if (!$this->isPropertyAvailable("Body")) {
return null;
}
return $this->getProperty("Body");
}
/**
* @var ItemBody
*/
public function setBody($value)
{
$this->setProperty("Body", $value, true);
}
/**
* @var string
*/
public $BodyPreview;
/**
* @return Location
*/
public function getLocation()
{
if (!$this->isPropertyAvailable("Location")) {
return null;
}
return $this->getProperty("Location");
}
/**
* @var Location
*/
public function setLocation($value)
{
$this->setProperty("Location", $value, true);
}
/**
* @var bool
*/
public $IsAllDay;
/**
* @var bool
*/
public $IsCancelled;
/**
* @var bool
*/
public $IsOrganizer;
/**
* @var bool
*/
public $ResponseRequested;
/**
* @var string
*/
public $SeriesMasterId;
/**
* @return Recipient
*/
public function getOrganizer()
{
if (!$this->isPropertyAvailable("Organizer")) {
return null;
}
return $this->getProperty("Organizer");
}
/**
* @var Recipient
*/
public function setOrganizer($value)
{
$this->setProperty("Organizer", $value, true);
}
/**
* @return AttachmentCollection
*/
public function getAttachments()
{
if (!$this->isPropertyAvailable("Attachments")) {
$this->setProperty("Attachments", new AttachmentCollection($this->getContext(), new ResourcePath("Attachments", $this->getResourcePath())));
}
return $this->getProperty("Attachments");
}
/**
* @return Calendar
*/
public function getCalendar()
{
if (!$this->isPropertyAvailable("Calendar")) {
$this->setProperty("Calendar", new Calendar($this->getContext(), new ResourcePath("Calendar", $this->getResourcePath())));
}
return $this->getProperty("Calendar");
}
/**
* @return EventCollection
*/
public function getInstances()
{
if (!$this->isPropertyAvailable("Instances")) {
$this->setProperty("Instances", new EventCollection($this->getContext(), new ResourcePath("Instances", $this->getResourcePath())));
}
return $this->getProperty("Instances");
}
/**
* @return PatternedRecurrence
*/
public function getRecurrence()
{
if (!$this->isPropertyAvailable("Recurrence")) {
return null;
}
return $this->getProperty("Recurrence");
}
/**
* @var PatternedRecurrence
*/
public function setRecurrence($value)
{
$this->setProperty("Recurrence", $value, true);
}
}