summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/FailedSearchMailboxType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/FailedSearchMailboxType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/FailedSearchMailboxType.php52
1 files changed, 52 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/FailedSearchMailboxType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/FailedSearchMailboxType.php
new file mode 100644
index 00000000..74c2cd8e
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/FailedSearchMailboxType.php
@@ -0,0 +1,52 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Type\FailedSearchMailboxType.
+ */
+
+namespace jamesiarmes\PhpEws\Type;
+
+use jamesiarmes\PhpEws\Type;
+
+/**
+ * Specifies the error message for a mailbox that failed on search.
+ *
+ * @package php-ews\Type
+ */
+class FailedSearchMailboxType extends Type
+{
+ /**
+ * Specifies the error code of the mailbox that failed the search.
+ *
+ * @since Exchange 2013
+ *
+ * @var integer
+ */
+ public $ErrorCode;
+
+ /**
+ * Represents the reason for the validation error.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ public $ErrorMessage;
+
+ /**
+ * Specifies whether the mailbox is an archive.
+ *
+ * @since Exchange 2013
+ *
+ * @var boolean
+ */
+ public $IsArchive;
+
+ /**
+ * Contains an identifier for the mailbox.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ public $Mailbox;
+}