summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Response/SyncFolderItemsResponseMessageType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Response/SyncFolderItemsResponseMessageType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Response/SyncFolderItemsResponseMessageType.php48
1 files changed, 48 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Response/SyncFolderItemsResponseMessageType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Response/SyncFolderItemsResponseMessageType.php
new file mode 100644
index 00000000..bb49a386
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Response/SyncFolderItemsResponseMessageType.php
@@ -0,0 +1,48 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Response\SyncFolderItemsResponseMessageType.
+ */
+
+namespace jamesiarmes\PhpEws\Response;
+
+/**
+ * Represents the status and result of a single SyncFolderItems operation
+ * request.
+ *
+ * @package php-ews\Response
+ */
+class SyncFolderItemsResponseMessageType extends ResponseMessageType
+{
+ /**
+ * Contains a sequence array of change types that represent the types of
+ * differences between the items on the client and the items on the Exchange
+ * server.
+ *
+ * @since Exchange 2007
+ *
+ * @var \jamesiarmes\PhpEws\Type\SyncFolderItemsChangesType
+ */
+ public $Changes;
+
+ /**
+ * Indicates whether the last item to synchronize has been included in the
+ * response.
+ *
+ * @since Exchange 2007
+ *
+ * @var boolean
+ */
+ public $IncludesLastItemInRange;
+
+ /**
+ * Contains a base64-encoded form of the synchronization data that is
+ * updated after each successful request.
+ *
+ * This is used to identify the synchronization state.
+ * .
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ public $SyncState;
+}