AuthenticationResponsePayloadDto

@Serializable
data class AuthenticationResponsePayloadDto(val clientDataJson: String, val authenticatorData: String, val signature: String, val userHandle: String? = null)

Constructors

Link copied to clipboard
constructor(clientDataJson: String, authenticatorData: String, signature: String, userHandle: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "authenticatorData")
val authenticatorData: String
Link copied to clipboard
@SerialName(value = "clientDataJSON")
val clientDataJson: String
Link copied to clipboard
@SerialName(value = "signature")
val signature: String
Link copied to clipboard
@SerialName(value = "userHandle")
val userHandle: String?