DraftEmailMessageWithContent

data class DraftEmailMessageWithContent(val id: String, val emailAddressId: String, val updatedAt: Date, val rfc822Data: ByteArray) : Parcelable, DraftEmailMessage

Representation of a draft email message in the Sudo Platform Email SDK.

Constructors

Link copied to clipboard
constructor(id: String, emailAddressId: String, updatedAt: Date, rfc822Data: ByteArray)

Functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)

Properties

Link copied to clipboard
open override val emailAddressId: String

String Unique identifier of the email address associated with the draft email message.

Link copied to clipboard
open override val id: String

String Unique identifier of the draft message.

Link copied to clipboard

ByteArray The rfc822 compliant data of the draft message.

Link copied to clipboard
open override val updatedAt: Date

Date When the draft message was last updated.