Entry
public struct Entry : Equatable
Log file entry type.
-
Undocumented
Declaration
Swift
public let id: UInt32
-
Undocumented
Declaration
Swift
public let date: String
-
Undocumented
Declaration
Swift
public let sizeBytes: UInt32
-
Initializes a new
Entry
.Declaration
Swift
public init(id: UInt32, date: String, sizeBytes: UInt32)
Parameters
id
ID of the log file, to specify a file to be downloaded
date
Date of the log file in UTC in ISO 8601 format “yyyy-mm-ddThh:mm:ssZ”
sizeBytes
Size of file in bytes
-
Declaration
Swift
public static func == (lhs: Entry, rhs: Entry) -> Bool