summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/GroupAttendeeConflictData.php
blob: cd700472b0646c4050f23463eefbf68b65e10854 (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
54
55
56
57
58
59
60
61
62
63
64
<?php
/**
 * Contains \jamesiarmes\PhpEws\Type\GroupAttendeeConflictData.
 */

namespace jamesiarmes\PhpEws\Type;

/**
 * Represents aggregate conflict information about the number of users who are
 * available, the number of users who have conflicts, and the number of users
 * who do not have availability information in a distribution list for a
 * suggested meeting time.
 *
 * @package php-ews\Type
 */
class GroupAttendeeConflictData extends AttendeeConflictData
{
    /**
     * Represents the number of users, resources, and rooms in a distribution
     * list.
     *
     * @since Exchange 2007
     *
     * @var integer
     */
    public $NumberOfMembers;

    /**
     * Represents the number of distribution list members who are available for
     * a suggested meeting time.
     *
     * This element represents members for whom the status is Free.
     *
     * @since Exchange 2007
     *
     * @var integer
     */
    public $NumberOfMembersAvailable;

    /**
     * Represents the number of distribution list members who have a conflict
     * with a suggested meeting time.
     *
     * This element represents members who have a Busy, OOF, or Tentative status.
     *
     * @since Exchange 2007
     *
     * @var integer
     */
    public $NumberOfMembersWithConflict;

    /**
     * Represents the number of group members who do not have published
     * free/busy data to compare to a suggested meeting time.
     *
     * This element represents members of a distribution list that is too large
     * or members who have No Data status.
     *
     * @since Exchange 2007
     *
     * @var integer
     */
    public $NumberOfMembersWithNoData;
}