summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/DateTimePrecisionType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/DateTimePrecisionType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/DateTimePrecisionType.php34
1 files changed, 34 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/DateTimePrecisionType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/DateTimePrecisionType.php
new file mode 100644
index 00000000..b5f6924a
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/DateTimePrecisionType.php
@@ -0,0 +1,34 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Enumeration\DateTimePrecisionType.
+ */
+
+namespace jamesiarmes\PhpEws\Enumeration;
+
+use \jamesiarmes\PhpEws\Enumeration;
+
+/**
+ * Specifies the precision for returned date/time values.
+ *
+ * @package php-ews\Enumeration
+ */
+class DateTimePrecisionType extends Enumeration
+{
+ /**
+ * Indicates that date/time values should be precise to the millisecond.
+ *
+ * @since Exchange 2010 SP2
+ *
+ * @var string
+ */
+ const MILLISECONDS = 'Milliseconds';
+
+ /**
+ * Indicates that date/time values should be precise to the second.
+ *
+ * @since Exchange 2010 SP2
+ *
+ * @var string
+ */
+ const SECONDS = 'Seconds';
+}