summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/UpdateItemType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/UpdateItemType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/UpdateItemType.php93
1 files changed, 93 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/UpdateItemType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/UpdateItemType.php
new file mode 100644
index 00000000..9f7fa07c
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/UpdateItemType.php
@@ -0,0 +1,93 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Request\UpdateItemType.
+ */
+
+namespace jamesiarmes\PhpEws\Request;
+
+/**
+ * Defines a request to update an item in a mailbox.
+ *
+ * @package php-ews\Request
+ */
+class UpdateItemType extends BaseRequestType
+{
+ /**
+ * Identifies the type of conflict resolution to try during an update.
+ *
+ * The default value is AutoResolve.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ *
+ * @see \jamesiarmes\PhpEws\Enumeration\ConflictResolutionType
+ */
+ public $ConflictResolution;
+
+ /**
+ * Contains an array of ItemChange elements that identify items and the
+ * updates to apply to the items.
+ *
+ * @since Exchange 2007
+ *
+ * @var \jamesiarmes\PhpEws\ArrayType\NonEmptyArrayOfItemChangesType
+ */
+ public $ItemChanges;
+
+ /**
+ * Describes how the item will be handled after it is updated.
+ *
+ * he MessageDisposition attribute is required for message items, including
+ * meeting messages such as meeting cancellations, meeting requests, and
+ * meeting responses.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ *
+ * @see \jamesiarmes\PhpEws\Enumeration\MessageDispositionType
+ */
+ public $MessageDisposition;
+
+ /**
+ * Identifies the target folder for operations that update, send, and create
+ * items in the Exchange store.
+ *
+ * @since Exchange 2007
+ *
+ * @var \jamesiarmes\PhpEws\Type\TargetFolderIdType
+ */
+ public $SavedItemFolderId;
+
+ /**
+ * Describes how meeting updates are communicated after a calendar item is
+ * updated.
+ *
+ * This attribute is required for calendar items and calendar item
+ * occurrences.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ *
+ * @see \jamesiarmes\PhpEws\Enumeration\CalendarItemUpdateOperationType
+ */
+ public $SendMeetingInvitationsOrCancellations;
+
+ /**
+ * Indicates whether read receipts for the updated item should be
+ * suppressed.
+ *
+ * A value of true indicates that read receipts should be suppressed. A
+ * value of false indicates that the read receipts will be sent to the
+ * sender.
+ *
+ * This attribute is optional.
+ *
+ * @since Exchange 2013 SP1
+ *
+ * @var boolean
+ */
+ public $SuppressReadReceipts;
+}