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

namespace jamesiarmes\PhpEws\ArrayType;

use \jamesiarmes\PhpEws\ArrayType;

/**
 * Defines an array of conflict data.
 *
 * @package php-ews\Array
 */
class ArrayOfAttendeeConflictData extends ArrayType
{
    /**
     * Contains aggregate conflict information about the number of users
     * 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.
     *
     * @since Exchange 2007
     *
     * @var \jamesiarmes\PhpEws\Type\GroupAttendeeConflictData[]
     */
    public $GroupAttendeeConflictData = array();

    /**
     * Contains a user's or contact's free/busy status for a time window that
     * occurs at the same time as the suggested meeting time identified in the
     * Suggestion element.
     *
     * @since Exchange 2007
     *
     * @var \jamesiarmes\PhpEws\Type\IndividualAttendeeConflictData[]
     */
    public $IndividualAttendeeConflictData = array();

    /**
     * Represents an attendee that resolved as a distribution list that was too
     * large to expand.
     *
     * @since Exchange 2007
     *
     * @var \jamesiarmes\PhpEws\Type\TooBigGroupAttendeeConflictData[]
     */
    public $TooBigGroupAttendeeConflictData = array();

    /**
     * Represents an unresolvable attendee or an attendee that is not a user,
     * distribution list, or contact.
     *
     * @since Exchange 2007
     *
     * @var \jamesiarmes\PhpEws\Type\UnknownAttendeeConflictData[]
     */
    public $UnknownAttendeeConflictData = array();
}