PasskeyListItem

@Serializable
data class PasskeyListItem(val id: String, val friendlyName: String? = null, val createdAt: Instant, val lastUsedAt: Instant? = null)(source)

A passkey item for AuthPasskeyApi.list

Parameters

id

The uuid for the passkey

friendlyName

The friendly name of the passkey

createdAt

When the passkey was created at

lastUsedAt

When the passkey was last used at

Constructors

Link copied to clipboard
constructor(id: String, friendlyName: String? = null, createdAt: Instant, lastUsedAt: Instant? = null)

Properties

Link copied to clipboard
@SerialName(value = "created_at")
val createdAt: Instant
Link copied to clipboard
@SerialName(value = "friendly_name")
val friendlyName: String?
Link copied to clipboard
val id: String
Link copied to clipboard
@SerialName(value = "last_used_at")
val lastUsedAt: Instant?