summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/ConversationActionTypeType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/ConversationActionTypeType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/ConversationActionTypeType.php96
1 files changed, 96 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/ConversationActionTypeType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/ConversationActionTypeType.php
new file mode 100644
index 00000000..9dc9eb90
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/ConversationActionTypeType.php
@@ -0,0 +1,96 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Enumeration\ConversationActionTypeType.
+ */
+
+namespace jamesiarmes\PhpEws\Enumeration;
+
+use \jamesiarmes\PhpEws\Enumeration;
+
+/**
+ * Contains the action to perform on a conversation specified by a
+ * ConversationId.
+ *
+ * @package php-ews\Enumeration
+ */
+class ConversationActionTypeType extends Enumeration
+{
+ /**
+ * The current items and new items in the conversation will automatically be
+ * set with the categories identified by the Categories property.
+ *
+ * @since Exchange 2010 SP1
+ *
+ * @var string
+ */
+ const ALWAYS_CATEGORIZE = 'AlwaysCategorize';
+
+ /**
+ * The current items and new items in the conversation will automatically be
+ * deleted.
+ *
+ * The deletion mode is set by the DeleteType property.
+ *
+ * @since Exchange 2010 SP1
+ *
+ * @var string
+ */
+ const ALWAYS_DELETE = 'AlwaysDelete';
+
+ /**
+ * The current items and new items in the conversation will automatically be
+ * moved to the folder identified by the DestinationFolderId property.
+ *
+ * @since Exchange 2010 SP1
+ *
+ * @var string
+ */
+ const ALWAYS_MOVE = 'AlwaysMove';
+
+ /**
+ * The current items in the conversation will be copied to the folder
+ * identified by the DestinationFolderId property.
+ *
+ * Subsequent items in the conversation will not be copied.
+ *
+ * @since Exchange 2010 SP1
+ *
+ * @var string
+ */
+ const COPY = 'Copy';
+
+ /**
+ * The current items in the conversation will be deleted.
+ *
+ * Subsequent items in the conversation will not be deleted. The deletion
+ * mode is set by the DeleteType property.
+ *
+ * @since Exchange 2010 SP1
+ *
+ * @var string
+ */
+ const DELETE = 'Delete';
+
+ /**
+ * The current items in the conversation will be moved to the folder
+ * identified by the DestinationFolderId property.
+ *
+ * Subsequent items in the conversation will not be moved.
+ *
+ * @since Exchange 2010 SP1
+ *
+ * @var string
+ */
+ const MOVE = 'Move';
+
+ /**
+ * The current items in the conversation will have their read state set.
+ *
+ * The read state is set by the IsRead property.
+ *
+ * @since Exchange 2010 SP1
+ *
+ * @var string
+ */
+ const SET_READ_STATE = 'SetReadState';
+}