AttachmentSource
Source of the attachment.
Inheritors
Types
Link copied to clipboard
data class Audio(val content: AttachmentContent, val format: String, val mimeType: String = "audio/", val fileName: String? = null) : AttachmentSource
Audio attachment (mp3, wav, etc.).
Link copied to clipboard
data class File(val content: AttachmentContent, val format: String, val mimeType: String, val fileName: String? = null) : AttachmentSource
Other types of file attachments. E.g. pdf, md, txt.
Link copied to clipboard
data class Image(val content: AttachmentContent, val format: String, val mimeType: String = "image/", val fileName: String? = null) : AttachmentSource
Image attachment (jpg, png, gif, etc.).
Link copied to clipboard
data class Video(val content: AttachmentContent, val format: String, val mimeType: String = "video/", val fileName: String? = null) : AttachmentSource
Video attachment (mp4, avi, etc.).