DeployedFileDTO

@Serializable
data class DeployedFileDTO(val relativePath: String? = null, val fileName: String? = null, val fileSize: Double? = null, val fileTimestamp: Double? = null)

Parameters

relativePath
fileName
fileSize
fileTimestamp

Constructors

Link copied to clipboard
constructor(relativePath: String? = null, fileName: String? = null, fileSize: Double? = null, fileTimestamp: Double? = null)

Properties

Link copied to clipboard
@SerialName(value = "fileName")
val fileName: String? = null
Link copied to clipboard
@SerialName(value = "fileSize")
val fileSize: Double? = null
Link copied to clipboard
@SerialName(value = "fileTimestamp")
val fileTimestamp: Double? = null
Link copied to clipboard
@SerialName(value = "relativePath")
val relativePath: String? = null