2.2.4.1 t:PostItemType Complex Type

The PostItemType complex type represents a Post object in a server message store. The PostItemType complex type extends the ItemType complex type, as specified in [MS-OXWSCORE] section 2.2.4.24.

 <xs:complexType name="PostItemType">
   <xs:complexContent>
     <xs:extension
       base="t:ItemType"
     >
       <xs:sequence>
         <xs:element name="ConversationIndex"
           type="xs:base64Binary"
           minOccurs="0"
          />
         <xs:element name="ConversationTopic"
           type="xs:string"
           minOccurs="0"
          />
         <xs:element name="From"
           type="t:SingleRecipientType"
           minOccurs="0"
          />
         <xs:element name="InternetMessageId"
           type="xs:string"
           minOccurs="0"
          />
         <xs:element name="IsRead"
           type="xs:boolean"
           minOccurs="0"
          />
         <xs:element name="PostedTime"
           type="xs:dateTime"
           minOccurs="0"
          />
         <xs:element name="References"
           type="xs:string"
           minOccurs="0"
          />
         <xs:element name="Sender"
           type="t:SingleRecipientType"
           minOccurs="0"
          />
       </xs:sequence>
     </xs:extension>
   </xs:complexContent>
 </xs:complexType>

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

Element name

Type

Description

ConversationIndex

xs:base64Binary ([XMLSCHEMA2])

Contains a binary ID that represents the thread to which this Post object belongs.

ConversationTopic

xs:string ([XMLSCHEMA2])

Represents the conversation identifier.

From

t:SingleRecipientType ([MS-OXWSCDATA] section 2.2.4.69)

Represents the address from which the Post object is sent, and can only be set at creation time.

InternetMessageId

xs:string

Represents the Internet message identifier, as specified in [RFC2822], of the Post object.

IsRead

xs:boolean ([XMLSCHEMA2])

Indicates whether the Post object has been read.

PostedTime

xs:dateTime ([XMLSCHEMA2])

Represents the time at which a Post object is posted. This element is read-only.

References

xs:string

Represents the USENET header, as specified in [RFC850], that is used to associate replies with the Post object.

Sender

t:SingleRecipientType

Identifies the sender of the Post object, and can only be set at creation time.