WebAuthn Kotlin Multiplatform API
Toggle table of contents
0.4.1-SNAPSHOT
common
Target filter
common
Switch theme
Search in API
Skip to content
WebAuthn Kotlin Multiplatform API
webauthn-json-kotlinx
/
dev.webauthn.serialization
/
AuthenticationResponsePayloadDto
Authentication
Response
Payload
Dto
@
Serializable
data
class
AuthenticationResponsePayloadDto
(
val
clientDataJson
:
String
,
val
authenticatorData
:
String
,
val
signature
:
String
,
val
userHandle
:
String
?
=
null
)
Members
Constructors
Authentication
Response
Payload
Dto
Link copied to clipboard
constructor
(
clientDataJson
:
String
,
authenticatorData
:
String
,
signature
:
String
,
userHandle
:
String
?
=
null
)
Properties
authenticator
Data
Link copied to clipboard
@
SerialName
(
value
=
"authenticatorData"
)
val
authenticatorData
:
String
client
Data
Json
Link copied to clipboard
@
SerialName
(
value
=
"clientDataJSON"
)
val
clientDataJson
:
String
signature
Link copied to clipboard
@
SerialName
(
value
=
"signature"
)
val
signature
:
String
user
Handle
Link copied to clipboard
@
SerialName
(
value
=
"userHandle"
)
val
userHandle
:
String
?