Email Message Received Notification
data class EmailMessageReceivedNotification(val id: String, val owner: String, val sudoId: String, val emailAddressId: String, val folderId: String, val from: EmailMessage.EmailAddress, val replyTo: EmailMessage.EmailAddress?, val subject: String? = null, val sentAt: Date, val receivedAt: Date, val encryptionStatus: EncryptionStatus, val hasAttachments: Boolean) : Parcelable
Representation of a messageReceived Email Service notification.
Constructors
Link copied to clipboard
constructor(id: String, owner: String, sudoId: String, emailAddressId: String, folderId: String, from: EmailMessage.EmailAddress, replyTo: EmailMessage.EmailAddress?, subject: String? = null, sentAt: Date, receivedAt: Date, encryptionStatus: EncryptionStatus, hasAttachments: Boolean)
Properties
Link copied to clipboard
String Identifier of email address to which this notification pertains.
Link copied to clipboard
EncryptionStatus End-to-end encryption status of the message.
Link copied to clipboard
EmailMessage.EmailAddress Sender of the email message.
Link copied to clipboard
Boolean Whether or not the received message has attachments.
Link copied to clipboard
Date When the message was received.
Link copied to clipboard
EmailMessage.EmailAddress First replyTo address, if any, of the received message.