summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/NonIndexableItemDetailType.php
diff options
context:
space:
mode:
authorSimon Rettberg2018-04-05 15:08:52 +0200
committerSimon Rettberg2018-04-05 15:08:52 +0200
commitb409fbb72591b43df7431e83e30d6c00ea633f21 (patch)
treee16963094d5189c24220bf8331a054e8be33325b /modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/NonIndexableItemDetailType.php
parent[locationinfo] Fix color of seat counter not updating properly (diff)
downloadslx-admin-b409fbb72591b43df7431e83e30d6c00ea633f21.tar.gz
slx-admin-b409fbb72591b43df7431e83e30d6c00ea633f21.tar.xz
slx-admin-b409fbb72591b43df7431e83e30d6c00ea633f21.zip
[locationinfo] Add exchange backend
Closes #3170
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/NonIndexableItemDetailType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/NonIndexableItemDetailType.php102
1 files changed, 102 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/NonIndexableItemDetailType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/NonIndexableItemDetailType.php
new file mode 100644
index 00000000..cfc977de
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/NonIndexableItemDetailType.php
@@ -0,0 +1,102 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Type\NonIndexableItemDetailType.
+ */
+
+namespace jamesiarmes\PhpEws\Type;
+
+use jamesiarmes\PhpEws\Type;
+
+/**
+ * Defines detail information about an item that cannot be indexed.
+ *
+ * @package php-ews\Type
+ */
+class NonIndexableItemDetailType extends Type
+{
+ /**
+ * Contains the unique identifier and change key of an item in the Exchange
+ * store.
+ *
+ * @since Exchange 2013
+ *
+ * @var \jamesiarmes\PhpEws\Type\ItemIdType
+ */
+ public $ItemId;
+
+ /**
+ * Internal use only.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ public $ErrorCode;
+
+ /**
+ * Describes the error that is returned in information about an item that
+ * cannot be indexed.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ public $ErrorDescription;
+
+ /**
+ * Indicates whether the item is partially indexed.
+ *
+ * @since Exchange 2013
+ *
+ * @var boolean
+ */
+ public $IsPartiallyIndexed;
+
+ /**
+ * Indicates whether a previous attempt to index the item was unsuccessful.
+ *
+ * @since Exchange 2013
+ *
+ * @var boolean
+ */
+ public $IsPermanentFailure;
+
+ /**
+ * Specifies a value used for sorting.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ public $SortValue;
+
+ /**
+ * Represents the number of attempts that have been made to index the item.
+ *
+ * @since Exchange 2013
+ *
+ * @var integer
+ */
+ public $AttemptCount;
+
+ /**
+ * Contains the time and date at which the last attempt to index the item
+ * was made.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ *
+ * @todo Make a DateTime object.
+ */
+ public $LastAttemptTime;
+
+ /**
+ * Specifies additional information about the hold status of a mailbox.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ public $AdditionalInfo;
+}