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
constructor(mediaAttachmentsCountLimit: Int, mediaAttachmentSizeLimitInMb: Int, mediaAttachmentsTotalSizeLimitInMb: Int, emailBodiesAllowedContentTypes: List<String>, emailHistoriesAllowedContentTypes: List<String>)

Properties

Link copied to clipboard

List of contentTypes supported for email body.

Link copied to clipboard

List of contentTypes supported for email history.

Link copied to clipboard

Maximum number of attachments per message.

Link copied to clipboard

Maximum size of each attachment.

Link copied to clipboard

Maximum total size of all attachments of one message.