summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/RecurringTimeTransitionType.php
blob: 88aaacd901f4bbdee23fdb344668e4ca1028df85 (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
26
27
28
29
30
31
32
33
<?php
/**
 * Contains \jamesiarmes\PhpEws\Type\RecurringTimeTransitionType;
 */

namespace jamesiarmes\PhpEws\Type;

/**
 * Base class for recurring time transitions.
 *
 * @package php-ews\Type
 */
abstract class RecurringTimeTransitionType extends TransitionType
{
    /**
     * The month in which the time transition occurs.
     *
     * @since Exchange 2010
     *
     * @var integer
     */
    public $Month;

    /**
     * The duration offset from Coordinated Universal Time (UTC) for the time
     * transition.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    public $TimeOffset;
}