summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/LegacyFreeBusyType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/LegacyFreeBusyType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/LegacyFreeBusyType.php71
1 files changed, 71 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/LegacyFreeBusyType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/LegacyFreeBusyType.php
new file mode 100644
index 00000000..e13df976
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/LegacyFreeBusyType.php
@@ -0,0 +1,71 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Enumeration\LegacyFreeBusyType.
+ */
+
+namespace jamesiarmes\PhpEws\Enumeration;
+
+use \jamesiarmes\PhpEws\Enumeration;
+
+/**
+ * Represents the intended status for a calendar item that is associated with a
+ * meeting request.
+ *
+ * @package php-ews\Enumeration
+ */
+class LegacyFreeBusyType extends Enumeration
+{
+ /**
+ * The calendar item represents busy time.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const BUSY = 'Busy';
+
+ /**
+ * The calendar item represents free time.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const FREE = 'Free';
+
+ /**
+ * The calendar item's status is not defined.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const NO_DATA = 'NoData';
+
+ /**
+ * The calendar item represents time out of the office.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const OUT_OF_OFFICE = 'OOF';
+
+ /**
+ * The calendar item represents tentatively busy time.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const TENTATIVE = 'Tentative';
+
+ /**
+ * The calendar item represents time working off site.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const WORKING_ELSEWHERE = 'WorkingElsewhere';
+}