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

namespace jamesiarmes\PhpEws\Request;

/**
 * Defines a request to disable an app.
 *
 * @package php-ews\Request
 */
class DisableAppType extends BaseRequestType
{
    /**
     * Specifies the reason for disabling an app.
     *
     * @since Exchange 2013
     *
     * @var string
     *
     * @see \jamesiarmes\PhpEws\Enumeration\DisableReasonType
     */
    public $DisableReason;

    /**
     * Specifies the identifier of an item.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    public $ID;
}