summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ProtectionRuleActionType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ProtectionRuleActionType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ProtectionRuleActionType.php40
1 files changed, 40 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ProtectionRuleActionType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ProtectionRuleActionType.php
new file mode 100644
index 00000000..9cc8d3bc
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ProtectionRuleActionType.php
@@ -0,0 +1,40 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Type\ProtectionRuleActionType.
+ */
+
+namespace jamesiarmes\PhpEws\Type;
+
+use \jamesiarmes\PhpEws\Type;
+
+/**
+ * Identifies what action must be executed if the condition part of a rule
+ * passes.
+ *
+ * @package php-ews\Type
+ */
+class ProtectionRuleActionType extends Type
+{
+ /**
+ * Specifies arguments to the action.
+ *
+ * This property should be left empty if the specified action does not
+ * require arguments to be specified. This property can include one or more
+ * values if an action requires one or more arguments. The
+ * RightsProtectMessage action will contain a single argument.
+ *
+ * @since Exchange 2010
+ *
+ * @var \jamesiarmes\PhpEws\Type\ProtectionRuleArgumentType
+ */
+ public $Argument;
+
+ /**
+ * Identifies the name of the action.
+ *
+ * @since Exchange 2010
+ *
+ * @var string
+ */
+ public $Name;
+}