LoginCandidate

data class LoginCandidate(var id: String, var timesUsed: Long, var timeCreated: Long, var timeLastUsed: Long, var timePasswordChanged: Long, var timeLastBreachAlertDismissed: Long?, var origin: String, var httpRealm: String?, var formActionOrigin: String?, var usernameField: String, var passwordField: String)

A login stored in the database, minus the encrypted fields.

Reading these never needs the encryption key, so consumers which filter on the cleartext fields can do so without forcing the user to authenticate. See list_candidates().

Constructors

Link copied to clipboard
constructor(id: String, timesUsed: Long, timeCreated: Long, timeLastUsed: Long, timePasswordChanged: Long, timeLastBreachAlertDismissed: Long?, origin: String, httpRealm: String?, formActionOrigin: String?, usernameField: String, passwordField: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
var id: String
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard