Skip to content

Commit 88fc569

Browse files
authored
refactor: Added two new fields to the passkey authentication method (#877)
1 parent 5e93b42 commit 88fc569

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

auth0/src/main/java/com/auth0/android/result/AuthenticationMethod.kt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,11 @@ public data class PasskeyAuthenticationMethod(
7575
@SerializedName("user_agent")
7676
public val userAgent: String?,
7777
@SerializedName("user_handle")
78-
public val userHandle: String?
78+
public val userHandle: String?,
79+
@SerializedName("aaguid")
80+
public val aaguid: String,
81+
@SerializedName("relying_party_id")
82+
public val relyingPartyId: String
7983
) : AuthenticationMethod()
8084

8185
public sealed class MfaAuthenticationMethod : AuthenticationMethod() {

0 commit comments

Comments
 (0)