interface EmailEntry {
    additionalRecipients: EmailParticipant[];
    attachments: EmailEntryAttachment[];
    authenticity: EmailAuthenticity;
    emailId: string;
    entryType: "email";
    from: EmailParticipant;
    hasMoreMarkdownContent: boolean;
    hasMoreTextContent: boolean;
    hiddenRecipients: EmailParticipant[];
    inReplyToEmailId: null | string;
    isStartOfThread: boolean;
    markdownContent: null | string;
    receivedAt: null | string;
    sentAt: null | string;
    subject: null | string;
    textContent: null | string;
    to: EmailParticipant;
    [k: string]: unknown;
}

Indexable

[k: string]: unknown

Properties

additionalRecipients: EmailParticipant[]
attachments: EmailEntryAttachment[]
authenticity: EmailAuthenticity
emailId: string
entryType: "email"
hasMoreMarkdownContent: boolean
hasMoreTextContent: boolean
hiddenRecipients: EmailParticipant[]
inReplyToEmailId: null | string
isStartOfThread: boolean
markdownContent: null | string
receivedAt: null | string
sentAt: null | string
subject: null | string
textContent: null | string

Generated using TypeDoc