PasskeyRegistrationVerifyResponse

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

Response for AuthPasskeyApi.verifyRegistration

Parameters

id

The uuid of the passkey

friendlyName

The friendly name of the passkey

createdAt

When the passkey was created at

Constructors

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

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