summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/RelativeMonthlyRecurrencePatternType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/RelativeMonthlyRecurrencePatternType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/RelativeMonthlyRecurrencePatternType.php38
1 files changed, 38 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/RelativeMonthlyRecurrencePatternType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/RelativeMonthlyRecurrencePatternType.php
new file mode 100644
index 00000000..d119092a
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/RelativeMonthlyRecurrencePatternType.php
@@ -0,0 +1,38 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Type\RelativeMonthlyRecurrencePatternType.
+ */
+
+namespace jamesiarmes\PhpEws\Type;
+
+/**
+ * Describes a relative monthly recurrence pattern.
+ *
+ * @package php-ews\Type
+ */
+class RelativeMonthlyRecurrencePatternType extends
+ IntervalRecurrencePatternBaseType
+{
+ /**
+ * Describes which week is used in a relative monthly recurrence pattern.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ *
+ * @see \jamesiarmes\PhpEws\Enumeration\DayOfWeekIndexType
+ */
+ public $DayOfWeekIndex;
+
+ /**
+ * Describes which days of the week are in the relative monthly recurrence
+ * pattern.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ *
+ * @see \jamesiarmes\PhpEws\Enumeration\DayOfWeekType
+ */
+ public $DaysOfWeek;
+}