summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ItemChangeType.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/ItemChangeType.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/ItemChangeType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ItemChangeType.php66
1 files changed, 66 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ItemChangeType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ItemChangeType.php
new file mode 100644
index 00000000..e758cdf2
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ItemChangeType.php
@@ -0,0 +1,66 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Type\ItemChangeType.
+ */
+
+namespace jamesiarmes\PhpEws\Type;
+
+use \jamesiarmes\PhpEws\Type;
+
+/**
+ * Represents an item identifier and the updates to apply to the item.
+ *
+ * @package php-ews\Type
+ */
+class ItemChangeType extends Type
+{
+ /**
+ * Contains the unique identifier and change key of an item in the Exchange
+ * store.
+ *
+ * This element is required if the OccurrenceItemId or RecurringMasterItemId
+ * element is not used.
+ *
+ * @since Exchange 2007
+ *
+ * @var \jamesiarmes\PhpEws\Type\ItemIdType
+ */
+ public $ItemId;
+
+ /**
+ * Identifies a single occurrence of a recurring item.
+ *
+ * This element is required if used. This element is required if the
+ * RecurringMasterItemId or ItemId element is not used.
+ *
+ * @since Exchange 2007
+ *
+ * @var \jamesiarmes\PhpEws\Type\OccurrenceItemIdType
+ */
+ public $OccurrenceItemId;
+
+ /**
+ * Identifies a recurrence master item by identifying one of its related
+ * occurrence items' identifiers.
+ *
+ * This element is required if used. This element is required if the
+ * OccurrenceItemId or ItemId element is not used.
+ *
+ * @since Exchange 2007
+ *
+ * @var \jamesiarmes\PhpEws\Type\RecurringMasterItemIdType
+ */
+ public $RecurringMasterItemId;
+
+ /**
+ * Contains an array that defines append, set, and delete changes to item
+ * properties.
+ *
+ * This element is required.
+ *
+ * @since Exchange 2007
+ *
+ * @var \jamesiarmes\PhpEws\ArrayType\NonEmptyArrayOfItemChangeDescriptionsType
+ */
+ public $Updates;
+}