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

namespace jamesiarmes\PhpEws\Request;

/**
 * Defines a request to add a contact to a group based on the contacts phone
 * number.
 *
 * @package php-ews\Request
 */
class AddNewTelUriContactToGroupType extends BaseRequestType
{
    /**
     * Unique identifier of a group.
     *
     * @since Exchange 2013
     *
     * @var \jamesiarmes\PhpEws\Type\ItemIdType
     */
    public $GroupId;

    /**
     * Contains the SIP URI address of a contact that is added to an instant
     * messaging (IM) group.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    public $ImContactSipUriAddress;

    /**
     * Represents the telephone number for a contact that is added to an instant
     * messaging (IM) group.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    public $ImTelephoneNumber;

    /**
     * Contains the tel Uniform Resource Identifier (URI) for a contact.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    public $TelUriAddress;
}