3.1.4.1.3.16 t:GroupAttendeeConflictData Complex Type

The GroupAttendeeConflictData complex type specifies 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.

 <xs:complexType name="GroupAttendeeConflictData">
   <xs:complexContent
     mixed="false"
   >
     <xs:extension
       base="t:AttendeeConflictData"
     >
       <xs:sequence>
         <xs:element name="NumberOfMembers"
           type="xs:int"
           maxOccurs="1"
           minOccurs="1"
          />
         <xs:element name="NumberOfMembersAvailable"
           type="xs:int"
           maxOccurs="1"
           minOccurs="1"
          />
         <xs:element name="NumberOfMembersWithConflict"
           type="xs:int"
           maxOccurs="1"
           minOccurs="1"
          />
         <xs:element name="NumberOfMembersWithNoData"
           type="xs:int"
           maxOccurs="1"
           minOccurs="1"
          />
       </xs:sequence>
     </xs:extension>
   </xs:complexContent>
 </xs:complexType>
  

The following table lists the child elements of the GroupAttendeeConflictData complex type.

Element name

Type

Description

NumberOfMembers

xs:int [XMLSCHEMA2]

Specifies the number of attendees in the distribution list.

If the number of members in the distribution list exceeds 100, the GroupAttendeeConflictData element will only return information for the first 100 members. The value of the NumberOfMembersAvailable, NumberOfMembersWithConflict, and NumberOfMembersWithNoData elements MUST equal the value of this element.

MUST be present.

NumberOfMembersAvailable

xs:int

Specifies the number of attendees who are available.

MUST be present. The maximum value is 100.

NumberOfMembersWithConflict

xs:int

Specifies the number of attendees who have conflicts.

MUST be present. The maximum value is 100.

NumberOfMembersWithNoData

xs:int

Specifies the number of attendees for which data could not be retrieved.

MUST be present. The maximum value is 100.