summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/GroupAttendeeConflictData.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/Type/GroupAttendeeConflictData.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/Type/GroupAttendeeConflictData.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/GroupAttendeeConflictData.php64
1 files changed, 64 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/GroupAttendeeConflictData.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/GroupAttendeeConflictData.php
new file mode 100644
index 00000000..cd700472
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/GroupAttendeeConflictData.php
@@ -0,0 +1,64 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Type\GroupAttendeeConflictData.
+ */
+
+namespace jamesiarmes\PhpEws\Type;
+
+/**
+ * Represents aggregate conflict information about the number of users who are
+ * 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.
+ *
+ * @package php-ews\Type
+ */
+class GroupAttendeeConflictData extends AttendeeConflictData
+{
+ /**
+ * Represents the number of users, resources, and rooms in a distribution
+ * list.
+ *
+ * @since Exchange 2007
+ *
+ * @var integer
+ */
+ public $NumberOfMembers;
+
+ /**
+ * Represents the number of distribution list members who are available for
+ * a suggested meeting time.
+ *
+ * This element represents members for whom the status is Free.
+ *
+ * @since Exchange 2007
+ *
+ * @var integer
+ */
+ public $NumberOfMembersAvailable;
+
+ /**
+ * Represents the number of distribution list members who have a conflict
+ * with a suggested meeting time.
+ *
+ * This element represents members who have a Busy, OOF, or Tentative status.
+ *
+ * @since Exchange 2007
+ *
+ * @var integer
+ */
+ public $NumberOfMembersWithConflict;
+
+ /**
+ * Represents the number of group members who do not have published
+ * free/busy data to compare to a suggested meeting time.
+ *
+ * This element represents members of a distribution list that is too large
+ * or members who have No Data status.
+ *
+ * @since Exchange 2007
+ *
+ * @var integer
+ */
+ public $NumberOfMembersWithNoData;
+}