LoginMeta
public struct LoginMeta : Equatable, Hashable
extension LoginMeta: Sendable
Metadata fields managed internally by the library.
These are automatically set on add() and updated on operations like touch() and update().
Not included in LoginEntry; use add_with_meta() when importing records with existing metadata.
-
Declaration
Swift
public var id: String -
Declaration
Swift
public var timesUsed: Int64 -
Declaration
Swift
public var timeCreated: Int64 -
Declaration
Swift
public var timeLastUsed: Int64 -
Declaration
Swift
public var timePasswordChanged: Int64 -
Declaration
Swift
public var timeOfLastBreach: Int64? -
Declaration
Swift
public var timeLastBreachAlertDismissed: Int64? -
init(id:timesUsed: timeCreated: timeLastUsed: timePasswordChanged: timeOfLastBreach: timeLastBreachAlertDismissed: ) Declaration
Swift
public init(id: String, timesUsed: Int64, timeCreated: Int64, timeLastUsed: Int64, timePasswordChanged: Int64, timeOfLastBreach: Int64?, timeLastBreachAlertDismissed: Int64?)