Configuration Data
data class ConfigurationData(val deleteEmailMessagesLimit: Int, val updateEmailMessagesLimit: Int, val emailMessageMaxInboundMessageSize: Int, val emailMessageMaxOutboundMessageSize: Int, val emailMessageRecipientsLimit: Int, val encryptedEmailMessageRecipientsLimit: Int, val prohibitedFileExtensions: List<String>, val emailMasksEnabled: Boolean, val externalEmailMasksEnabled: Boolean) : 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, prohibitedFileExtensions: List<String>, emailMasksEnabled: Boolean, externalEmailMasksEnabled: Boolean)
Properties
Link copied to clipboard
Int The number of email messages that can be deleted at a time.
Link copied to clipboard
Boolean Whether email masks are enabled.
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
Boolean Whether external email masks are enabled.
Link copied to clipboard
List
Link copied to clipboard
Int The number of email messages that can be updated at a time.