summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/Duration.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/Duration.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/Duration.php38
1 files changed, 38 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/Duration.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/Duration.php
new file mode 100644
index 00000000..5f5261d3
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/Duration.php
@@ -0,0 +1,38 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Type\Duration.
+ */
+
+namespace jamesiarmes\PhpEws\Type;
+
+use \jamesiarmes\PhpEws\Type;
+
+/**
+ * Represents a time span.
+ *
+ * @package php-ews\Type
+ */
+class Duration extends Type
+{
+ /**
+ * Represents the end of the time span.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ *
+ * @todo Make a DateTime object.
+ */
+ public $EndTime;
+
+ /**
+ * Represents the start of the time span.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ *
+ * @todo Make a DateTime object.
+ */
+ public $StartTime;
+}