summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/IntervalRecurrencePatternBaseType.php
blob: 41c8b42ac61a1af67123cf9bbb5aab5354006f6c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
/**
 * Contains \jamesiarmes\PhpEws\Type\IntervalRecurrencePatternBaseType.
 */

namespace jamesiarmes\PhpEws\Type;

/**
 * Base class for recurrence patterns with an interval.
 *
 * @package php-ews\Type
 */
abstract class IntervalRecurrencePatternBaseType extends RecurrencePatternBaseType
{
    /**
     * Defines the interval between two consecutive recurring pattern items.
     *
     * @since Exchange 2007
     *
     * @var integer
     */
    public $Interval;
}