summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/SerializableTimeZone.php
blob: 089375109eb28365d0002d9c7417f5ec675af1cc (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
/**
 * Contains \jamesiarmes\PhpEws\Type\SerializableTimeZone.
 */

namespace jamesiarmes\PhpEws\Type;

use \jamesiarmes\PhpEws\Type;

/**
 * Defines a time zone.
 *
 * @package php-ews\Type
 */
class SerializableTimeZone extends Type
{
    /**
     * Represents the general offset from Coordinated Universal Time (UTC).
     *
     * This value is in minutes.
     *
     * @since Exchange 2007
     *
     * @var integer
     */
    public $Bias;

    /**
     * Represents an offset from the time relative to UTC represented by the
     * Bias (UTC) element in regions where daylight saving time is observed.
     *
     * This element also contains information about when the transition to
     * daylight saving time from standard time occurs.
     *
     * @since Exchange 2007
     *
     * @var \jamesiarmes\PhpEws\Type\SerializableTimeZoneTime
     */
    public $DaylightTime;

    /**
     * Represents an offset from the time relative to UTC represented by the
     * Bias (UTC) element.
     *
     * This element also contains information about the transition to standard
     * time from daylight saving time in regions where daylight saving time is
     * observed.
     *
     * @since Exchange 2007
     *
     * @var \jamesiarmes\PhpEws\Type\SerializableTimeZoneTime
     */
    public $StandardTime;
}