DownloadedFileInfo

@Serializable
data class DownloadedFileInfo(val totalBytes: Long, val relativePath: String, val displayName: String, val extraInfo: String? = null, val basePath: String? = null, val linkHash: Int? = null)(source)

Constructors

Link copied to clipboard
constructor(totalBytes: Long, relativePath: String, displayName: String, extraInfo: String? = null, basePath: String? = null, linkHash: Int? = null)

Properties

Link copied to clipboard
@SerialName(value = "basePath")
val basePath: String?
Link copied to clipboard
@SerialName(value = "displayName")
val displayName: String
Link copied to clipboard
@SerialName(value = "extraInfo")
val extraInfo: String?
Link copied to clipboard
@SerialName(value = "linkHash")
val linkHash: Int?
Link copied to clipboard
@SerialName(value = "relativePath")
val relativePath: String
Link copied to clipboard
@SerialName(value = "totalBytes")
val totalBytes: Long