summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ItemChangeType.php
diff options
context:
space:
mode:
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;
+}