summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/UpdateItemType.php
diff options
context:
space:
mode:
authorroot2019-02-19 18:53:50 +0100
committerroot2019-02-19 18:53:50 +0100
commit0ad4c0f8196b61699754762aacbaab0223478ab9 (patch)
treede434c4aea8d07ecd01cd3badd48d057d62c2d1b /modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/UpdateItemType.php
parent[usb-lock-off] Edit rule cleanup and fix of the dropdown boxes. (diff)
parent[statistics] Fix RAM change warning to handle increase too (diff)
downloadslx-admin-usb-lock-off.tar.gz
slx-admin-usb-lock-off.tar.xz
slx-admin-usb-lock-off.zip
Merge branch 'master' into usb-lock-offusb-lock-off
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;
+}