summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/WeeklyRecurrencePatternType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/WeeklyRecurrencePatternType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/WeeklyRecurrencePatternType.php36
1 files changed, 36 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/WeeklyRecurrencePatternType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/WeeklyRecurrencePatternType.php
new file mode 100644
index 00000000..86c30c8b
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/WeeklyRecurrencePatternType.php
@@ -0,0 +1,36 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Type\WeeklyRecurrencePatternType.
+ */
+
+namespace jamesiarmes\PhpEws\Type;
+
+/**
+ * Describes a weekly recurrence pattern.
+ *
+ * @package php-ews\Type
+ */
+class WeeklyRecurrencePatternType extends IntervalRecurrencePatternBaseType
+{
+ /**
+ * Describes which days of the week are in the weekly recurrence pattern.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ *
+ * @see \jamesiarmes\PhpEws\Enumeration\DaysOfWeekType
+ */
+ public $DaysOfWeek;
+
+ /**
+ * Specifies the first day of the week.
+ *
+ * @since Exchange 2010
+ *
+ * @var string
+ *
+ * @see \jamesiarmes\PhpEws\Enumeration\DayOfWeekType
+ */
+ public $FirstDayOfWeek;
+}