interface Email {
    additionalRecipients: EmailParticipant[];
    attachments: Attachment[];
    authenticity: EmailAuthenticity;
    createdAt: string;
    createdBy: Actor;
    from: EmailParticipant;
    hiddenRecipients: EmailParticipant[];
    id: string;
    inReplyToEmailId: null | string;
    isStartOfThread: boolean;
    markdownContent: null | string;
    receivedAt: null | string;
    replyTo: null | string;
    sentAt: null | string;
    subject: null | string;
    textContent: null | string;
    timelineEntryId: string;
    to: EmailParticipant;
    updatedAt: string;
    updatedBy: Actor;
    [k: string]: unknown;
}

Indexable

[k: string]: unknown

Properties

additionalRecipients: EmailParticipant[]
attachments: Attachment[]
authenticity: EmailAuthenticity
createdAt: string
createdBy: Actor
hiddenRecipients: EmailParticipant[]
id: string
inReplyToEmailId: null | string
isStartOfThread: boolean
markdownContent: null | string
receivedAt: null | string
replyTo: null | string
sentAt: null | string
subject: null | string
textContent: null | string
timelineEntryId: string
updatedAt: string
updatedBy: Actor

Generated using TypeDoc