2.2.3.2.17 Meeting Complex Type

The Meeting type contains information that describes a known entity that represents a meeting suggestion.

 <xs:complexType name="Meeting">
     <xs:sequence>
         <xs:element minOccurs="0" maxOccurs="1" name="MeetingString" 
             type="xs:string" />
         <xs:element minOccurs="0" maxOccurs="1" name="Attendees" 
             type="ArrayOfEmailUser" />
         <xs:element minOccurs="1" maxOccurs="1" name="StartTime" nillable="true" 
             type="xs:dateTime" />
         <xs:element minOccurs="1" maxOccurs="1" name="EndTime" nillable="true" 
             type="xs:dateTime" />
     </xs:sequence>
     <xs:attribute name="Location" type="xs:string" />
     <xs:attribute name="Subject" type="xs:string" />
     <xs:attribute default="-1" name="StartIndex" type="xs:int" />
     <xs:attribute default="LatestReply" name="Position" type="EmailPosition" />
 </xs:complexType>

MeetingString: An element of type xs:string, as defined in [XMLSCHEMA2/2] section 3.2.1, that contains the text from the Message object that indicates a meeting suggestion. For more details, see section 2.2.3.1.21.

Attendees: An element of the ArrayOfEmailUser complex type, as defined in section 2.2.3.2.6, that contains the attendees of the meeting. For more details, see section 2.2.3.1.5.

StartTime: An element of type xs:dateTime, as defined in ([XMLSCHEMA2/2] section 3.2.7, that contains the date and time the meeting is scheduled to start. For more details, see section 2.2.3.1.29.

EndTime: An element of type xs:dateTime that contains the date and time the meeting is scheduled to end. For more details, see section 2.2.3.1.17.

Location: An attribute of type xs:string that contains the location of the meeting. For more details, see section 2.2.3.4.2.

Subject: An attribute of type xs:string that contains the subject of the meeting. For more details, see section 2.2.3.4.5.

StartIndex: An attribute of type xs:int, as defined in [XMLSCHEMA2/2] section 3.3.17, that indicates the location of the entity, relative to the value of the Position attribute. For more details, see section 2.2.3.4.4.

Position: An attribute of the EmailPosition simple type, as defined in section 2.2.3.3.1, that indicates the location of the entity within the Message object. For more details, see section 2.2.3.4.3.