summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/DistinguishedPropertySetType.php
diff options
context:
space:
mode:
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';
+}