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

namespace jamesiarmes\PhpEws\Request;

/**
 * Defines a request to remove an instant messaging contact from an instant
 * messaging group.
 *
 * @package php-ews\Request
 */
class RemoveImContactFromGroupType extends BaseRequestType
{
    /**
     * Identifies the contact to be removed.
     *
     * @since Exchange 2013
     *
     * @var \jamesiarmes\PhpEws\Type\ItemIdType
     */
    public $ContactId;

    /**
     * Identifies the group to remove the contact from.
     *
     * @since Exchange 2013
     *
     * @var \jamesiarmes\PhpEws\Type\ItemIdType
     */
    public $GroupId;
}