summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/CalendarPermissionLevelType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/CalendarPermissionLevelType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/CalendarPermissionLevelType.php33
1 files changed, 33 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/CalendarPermissionLevelType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/CalendarPermissionLevelType.php
new file mode 100644
index 00000000..8331e546
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/CalendarPermissionLevelType.php
@@ -0,0 +1,33 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Enumeration\CalendarPermissionLevelType.
+ */
+
+namespace jamesiarmes\PhpEws\Enumeration;
+
+/**
+ * Represents the permission level that a user has on a Calendar folder.
+ *
+ * @package php-ews\Enumeration
+ */
+class CalendarPermissionLevelType extends PermissionLevelType
+{
+ /**
+ * Indicates that the user can view only free/busy time within the calendar.
+ *
+ * @since Exchange 2007 SP1
+ *
+ * @var string
+ */
+ const FREE_BUSY_ONLY = 'FreeBusyTimeOnly';
+
+ /**
+ * Indicates that the user can view free/busy time within the calendar and
+ * the subject and location of appointments.
+ *
+ * @since Exchange 2007 SP1
+ *
+ * @var string
+ */
+ const FREE_BUSY_SUBJECT_AND_LOCATION = 'FreeBusyTimeAndSubjectAndLocation';
+}