summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/AbsoluteDateTransitionType.php
blob: fb06c47be64ad90bb7f946601216cc4865611771 (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
34
35
36
<?php
/**
 * Contains \jamesiarmes\PhpEws\Type\AbsoluteDateTransitionType.
 */

namespace jamesiarmes\PhpEws\Type;

/**
 * Represents a time zone transition that occurs on a specific date and at a
 * specific time.
 *
 * @package php-ews\Type
 */
class AbsoluteDateTransitionType extends TransitionType
{
    /**
     * Represents the date and time at which the time zone transition occurs.
     *
     * @since Exchange 2010
     *
     * @var string
     *
     * @todo Make a DateTime object.
     */
    public $DateTime;

    /**
     * Specifies the Period or TransitionsGroup that is the target of the time
     * zone transition.
     *
     * @since Exchange 2010
     *
     * @var \jamesiarmes\PhpEws\Type\TransitionTargetType
     */
    public $To;
}