FileMetadataResponse

data class FileMetadataResponse(val deleteStatus: String, val fileContentUri: String, val fileFormat: String? = null, val fileName: String? = null, val fileSize: Int? = null)

Represents a file.

Constructors

Link copied to clipboard
constructor(deleteStatus: String, fileContentUri: String, fileFormat: String? = null, fileName: String? = null, fileSize: Int? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Indicates whether the file was deleted from the storage account.

Link copied to clipboard

A URI with a valid SAS token to allow uploading / downloading the file.

Link copied to clipboard
val fileFormat: String? = null

The format of the file

Link copied to clipboard
val fileName: String? = null

The name of the file.

Link copied to clipboard
val fileSize: Int? = null

The size of the file.