summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/ArrayType/ArrayOfAttendeeConflictData.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/ArrayType/ArrayOfAttendeeConflictData.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-0ad4c0f8196b61699754762aacbaab0223478ab9.tar.gz
slx-admin-0ad4c0f8196b61699754762aacbaab0223478ab9.tar.xz
slx-admin-0ad4c0f8196b61699754762aacbaab0223478ab9.zip
Merge branch 'master' into usb-lock-offusb-lock-off
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/ArrayType/ArrayOfAttendeeConflictData.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/ArrayType/ArrayOfAttendeeConflictData.php59
1 files changed, 59 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/ArrayType/ArrayOfAttendeeConflictData.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/ArrayType/ArrayOfAttendeeConflictData.php
new file mode 100644
index 00000000..fc17e6ef
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/ArrayType/ArrayOfAttendeeConflictData.php
@@ -0,0 +1,59 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\ArrayType\ArrayOfAttendeeConflictData.
+ */
+
+namespace jamesiarmes\PhpEws\ArrayType;
+
+use \jamesiarmes\PhpEws\ArrayType;
+
+/**
+ * Defines an array of conflict data.
+ *
+ * @package php-ews\Array
+ */
+class ArrayOfAttendeeConflictData extends ArrayType
+{
+ /**
+ * Contains aggregate conflict information about the number of users
+ * available, the number of users who have conflicts, and the number of
+ * users who do not have availability information in a distribution list for
+ * a suggested meeting time.
+ *
+ * @since Exchange 2007
+ *
+ * @var \jamesiarmes\PhpEws\Type\GroupAttendeeConflictData[]
+ */
+ public $GroupAttendeeConflictData = array();
+
+ /**
+ * Contains a user's or contact's free/busy status for a time window that
+ * occurs at the same time as the suggested meeting time identified in the
+ * Suggestion element.
+ *
+ * @since Exchange 2007
+ *
+ * @var \jamesiarmes\PhpEws\Type\IndividualAttendeeConflictData[]
+ */
+ public $IndividualAttendeeConflictData = array();
+
+ /**
+ * Represents an attendee that resolved as a distribution list that was too
+ * large to expand.
+ *
+ * @since Exchange 2007
+ *
+ * @var \jamesiarmes\PhpEws\Type\TooBigGroupAttendeeConflictData[]
+ */
+ public $TooBigGroupAttendeeConflictData = array();
+
+ /**
+ * Represents an unresolvable attendee or an attendee that is not a user,
+ * distribution list, or contact.
+ *
+ * @since Exchange 2007
+ *
+ * @var \jamesiarmes\PhpEws\Type\UnknownAttendeeConflictData[]
+ */
+ public $UnknownAttendeeConflictData = array();
+}