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

namespace jamesiarmes\PhpEws\Type;

/**
 * Represents service configuration information for the Unified Messaging
 * service.
 *
 * @package php-ews\Type
 */
class UnifiedMessageServiceConfiguration extends ServiceConfiguration
{
    /**
     * Identifies the Play-on-Phone dial string.
     *
     * This element is required.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    public $PlayOnPhoneDialString;

    /**
     * Indicates whether the Play-on-Phone feature is enabled.
     *
     * This element is required.
     *
     * @since Exchange 2010
     *
     * @var boolean
     */
    public $PlayOnPhoneEnabled;

    /**
     * Indicates whether Unified Messaging is enabled for an account.
     *
     * This element is required.
     *
     * @since Exchange 2010
     *
     * @var boolean
     */
    public $UmEnabled;
}