summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/NumberedRecurrenceRangeType.php
blob: d3358a10850b7ca616f7688bbd0b696e4b4daff8 (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\NumberedRecurrenceRangeType.
 */

namespace jamesiarmes\PhpEws\Type;

/**
 * Describes the start date and the number of occurrences of a recurring item.
 *
 * @package php-ews\Type
 */
class NumberedRecurrenceRangeType extends RecurrenceRangeBaseType
{
    /**
     * Contains the number of occurrences of a recurring item.
     *
     * @since Exchange 2007
     *
     * @var integer
     */
    public $NumberOfOccurrences;
}