IEmailThreadMetadata Interface |
Namespace: Law.EdaIntegration.EmailThreading
public interface IEmailThreadMetadata
The IEmailThreadMetadata type exposes the following members.
Name | Description | |
---|---|---|
InclusiveReason |
If IsInclusive is true, this field indicates why the email is inclusive. If the email message
contains message content that is not copied in any of its subsequent replies or forwards,
"Message" is displayed. If the email message has attachments that are not included in any of its
subsequent replies or forwards, "Attachment" is displayed. If the email message has both new message
content and new attachments not included in any of its subsequent replies or forwards,
"Message, Attachment" is displayed.
If IsInclusive false, this value is blank. | |
IsInclusive |
Flags a minimal set of emails which can be viewed in order to read the email message thread's
entire conversation. In the simplest case this will simply be the last message in the thread,
since it will quote all the previous messages.
| |
IsMessage |
Indicates whether the document was recognized as an email message.
| |
MessageId |
Unique ID that is assigned to each message. If several documents have the same Message ID,
it is because they were recognized as separate copies of the same email message.
| |
ParentId |
The immediate parent of the current email in the thread. For the first message, this will be blank.
For each subsequent one, it will be the Document Id of the email which it replies to or is a forward
of. For attachments, ParentID indicates the email to which it is attached.
| |
ThreadId |
A unique ID assigned to each message thread.
| |
ThreadIndex |
Composed of a base ID, plus a unique number for each message within the thread, and if there are
attachments, the letter A plus the unique number for the attachment within the thread. For example, A1, A2, A3
Uses the format: [base ID].[unique number for message].A[unique attachment number].
The base ID is the same as the thread ID without the leading zeros. The thread index for the root message
of the thread will just be this.
ex: 4.1.2.3.4.5.6.7
| |
ThreadSize |
The total number of unique messages in the thread.
| |
ThreadSort |
A sort order which follows the chain of conversation, from first message to most recent. If a
conversation splits into multiple branches, ThreadSort will keep each of the branches together.
|