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

namespace jamesiarmes\PhpEws\Request;

/**
 * Represents a request to read an item on a phone.
 *
 * @package php-ews\Request
 */
class PlayOnPhoneType extends BaseRequestType
{
    /**
     * Represents the dial string of the phone number that is called to play an
     * item by phone.
     *
     * This element is required.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    public $DialString;

    /**
     * Represents the identifier of an item to play on a phone.
     *
     * This element is required.
     *
     * @since Exchange 2010
     *
     * @var \jamesiarmes\PhpEws\Type\ItemIdType
     */
    public $ItemId;
}