FileMeta
public struct FileMeta: Codable
Represents information about an encrypted file stored by E3DB.
-
URL where the file can be downloaded
Declaration
Swift
public let fileUrl: URL?
-
Name of the file
Declaration
Swift
public let fileName: String?
-
MD5 checksum for the file, as a Base64 encoded string
Declaration
Swift
public let checksum: String
-
Compression used for the plaintext contents of the file
Declaration
Swift
public let compression: String
-
Size of the encrypted file
Declaration
Swift
public let size: UInt64?