ConfigurationData

data class ConfigurationData(val deleteEmailMessagesLimit: Int, val updateEmailMessagesLimit: Int, val emailMessageMaxInboundMessageSize: Int, val emailMessageMaxOutboundMessageSize: Int, val emailMessageRecipientsLimit: Int, val encryptedEmailMessageRecipientsLimit: Int) : Parcelable

Representation of the email service configuration data used in the Sudo Platform Email SDK.

Constructors

Link copied to clipboard
constructor(deleteEmailMessagesLimit: Int, updateEmailMessagesLimit: Int, emailMessageMaxInboundMessageSize: Int, emailMessageMaxOutboundMessageSize: Int, emailMessageRecipientsLimit: Int, encryptedEmailMessageRecipientsLimit: Int)

Functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)

Properties

Link copied to clipboard

Int The number of email messages that can be deleted at a time.

Link copied to clipboard

Int The maximum allowed size of an inbound email message.

Link copied to clipboard

Int The maximum allowed size of an outbound email message.

Link copied to clipboard

Int The maximum number of recipients for an out-of-network email message.

Link copied to clipboard

Int The maximum number of recipients for an in-network encrypted email message.

Link copied to clipboard

Int The number of email messages that can be updated at a time.