ConversationLimits

data class ConversationLimits(    val mediaAttachmentsCountLimit: Int,     val mediaAttachmentSizeLimitInMb: Int,     val mediaAttachmentsTotalSizeLimitInMb: Int,     val emailBodiesAllowedContentTypes: List<String>,     val emailHistoriesAllowedContentTypes: List<String>)

Limits for attachments per each message in a conversation.

Constructors

Link copied to clipboard
fun ConversationLimits(    mediaAttachmentsCountLimit: Int,     mediaAttachmentSizeLimitInMb: Int,     mediaAttachmentsTotalSizeLimitInMb: Int,     emailBodiesAllowedContentTypes: List<String>,     emailHistoriesAllowedContentTypes: List<String>)

Properties

Link copied to clipboard
val emailBodiesAllowedContentTypes: List<String>

List of contentTypes supported for email body.

Link copied to clipboard
val emailHistoriesAllowedContentTypes: List<String>

List of contentTypes supported for email history.

Link copied to clipboard
val mediaAttachmentsCountLimit: Int

Maximum number of attachments per message.

Link copied to clipboard
val mediaAttachmentSizeLimitInMb: Int

Maximum size of each attachment.

Link copied to clipboard
val mediaAttachmentsTotalSizeLimitInMb: Int

Maximum total size of all attachments of one message.