summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/EndDateRecurrenceRangeType.php
blob: 68aa4116ac14ecb1dc35dc0d4816cf44957155b1 (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
24
25
<?php
/**
 * Contains \jamesiarmes\PhpEws\Type\EndDateRecurrenceRangeType.
 */

namespace jamesiarmes\PhpEws\Type;

/**
 * Describes the start date and the end date of an item recurrence pattern.
 *
 * @package php-ews\Type
 */
class EndDateRecurrenceRangeType extends RecurrenceRangeBaseType
{
    /**
     * Represents the end date of a recurring task or calendar item.
     *
     * @since Exchange 2007
     *
     * @var string
     *
     * @todo Make a date object that extends DateTime.
     */
    public $EndDate;
}