FileData

data class FileData(val mimeType: String? = null, val displayName: String? = null, val fileUri: String? = null)

Represents file data.

Constructors

Link copied to clipboard
constructor(mimeType: String? = null, displayName: String? = null, fileUri: String? = null)

Properties

Link copied to clipboard
val displayName: String? = null

The display name of the file.

Link copied to clipboard
val fileUri: String? = null

The URI of the file.

Link copied to clipboard
val mimeType: String? = null

The MIME type of the file.