summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/DistinguishedPropertySetType.php
diff options
context:
space:
mode:
authorroot2019-02-19 18:53:50 +0100
committerroot2019-02-19 18:53:50 +0100
commit0ad4c0f8196b61699754762aacbaab0223478ab9 (patch)
treede434c4aea8d07ecd01cd3badd48d057d62c2d1b /modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/DistinguishedPropertySetType.php
parent[usb-lock-off] Edit rule cleanup and fix of the dropdown boxes. (diff)
parent[statistics] Fix RAM change warning to handle increase too (diff)
downloadslx-admin-0ad4c0f8196b61699754762aacbaab0223478ab9.tar.gz
slx-admin-0ad4c0f8196b61699754762aacbaab0223478ab9.tar.xz
slx-admin-0ad4c0f8196b61699754762aacbaab0223478ab9.zip
Merge branch 'master' into usb-lock-offusb-lock-off
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/DistinguishedPropertySetType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/DistinguishedPropertySetType.php106
1 files changed, 106 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/DistinguishedPropertySetType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/DistinguishedPropertySetType.php
new file mode 100644
index 00000000..ea69cfe9
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/DistinguishedPropertySetType.php
@@ -0,0 +1,106 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Enumeration\DistinguishedPropertySetType.
+ */
+
+namespace jamesiarmes\PhpEws\Enumeration;
+
+use \jamesiarmes\PhpEws\Enumeration;
+
+/**
+ * Defines the well-known property set IDs for extended MAPI properties.
+ *
+ * @package php-ews\Enumeration
+ */
+class DistinguishedPropertySetType extends Enumeration
+{
+ /**
+ * Identifies the address property set ID by name.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const ADDRESS = 'Address';
+
+ /**
+ * Identifies the appointment property set ID by name.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const APPOINTMENT = 'Appointment';
+
+ /**
+ * Identifies the calendar assistant property set ID by name.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const CALENDAR_ASSISTANT = 'CalendarAssistant';
+
+ /**
+ * Identifies the common property set ID by name.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const COMMON = 'Common';
+
+ /**
+ * Identifies the Internet headers property set ID by name.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const INTERNET_HEADERS = 'InternetHeaders';
+
+ /**
+ * Identifies the meeting property set ID by name.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const MEETING = 'Meeting';
+
+ /**
+ * Identifies the public strings property set ID by name.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const PUBLIC_STRINGS = 'PublicStrings';
+
+ /**
+ * Identifies the sharing property set ID by name.
+ *
+ * @since Exchange 2016
+ *
+ * @var string
+ */
+ const SHARING = 'Sharing';
+
+ /**
+ * Indicates a task.
+ *
+ * @since Exchange 2010
+ *
+ * @var string
+ */
+ const TASK = 'Task';
+
+ /**
+ * Identifies the unified messaging property set ID by name.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const UNIFIED_MESSAGING = 'UnifiedMessaging';
+}