summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/TransitionType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/TransitionType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/TransitionType.php28
1 files changed, 28 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/TransitionType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/TransitionType.php
new file mode 100644
index 00000000..23bc486d
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/TransitionType.php
@@ -0,0 +1,28 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Type\TransitionType.
+ */
+
+namespace jamesiarmes\PhpEws\Type;
+
+use jamesiarmes\PhpEws\Type;
+
+/**
+ * Represents a time zone transition.
+ *
+ * @package php-ews\Type
+ *
+ * @todo Alter RecurringDateTransitionType to extend this class.
+ */
+class TransitionType extends Type
+{
+ /**
+ * Specifies the Period or TransitionsGroup that is the target of the time
+ * zone transition.
+ *
+ * @since Exchange 2010
+ *
+ * @var \jamesiarmes\PhpEws\Type\TransitionTargetType
+ */
+ public $To;
+}