WatchedAttachmentItem

data class WatchedAttachmentItem(val id: String, val fileExtension: String? = null, val filename: String? = null, val metaData: String? = null)

A watched attachment record item. This is usually returned from watching all relevant attachment IDs.

Constructors

Link copied to clipboard
constructor(id: String, fileExtension: String? = null, filename: String? = null, metaData: String? = null)

Properties

Link copied to clipboard
val fileExtension: String? = null

File extension used to determine an internal filename for storage if no filename is provided.

Link copied to clipboard
val filename: String? = null

Filename to store the attachment with.

Link copied to clipboard
val id: String

Id for the attachment record.

Link copied to clipboard
val metaData: String? = null

Optional metadata for the attachment record.