FileData

data class FileData(var id: String, var name: String, var data: ByteArray, var contentType: String, var dispositionType: String)

Represents the data of a file.

Constructors

Link copied to clipboard
constructor(id: String, name: String, data: ByteArray, contentType: String, dispositionType: String)

Properties

Link copied to clipboard

The content type of the file.

Link copied to clipboard

The byte array containing the file data.

Link copied to clipboard

The disposition type of the file.

Link copied to clipboard
var id: String

The unique identifier of the file.

Link copied to clipboard

The name of the file.