diff --git a/src/Passwordless/Models/Credential.cs b/src/Passwordless/Models/Credential.cs
index 9cded94..66b7e67 100644
--- a/src/Passwordless/Models/Credential.cs
+++ b/src/Passwordless/Models/Credential.cs
@@ -20,6 +20,7 @@ namespace Passwordless;
/// Optional country credential was created in.
/// Device the credential was created on.
/// Friendly name for credential.
+/// Human-palatable description of the credential's managing authenticator.
/// Identifier for the user.
/// Whether the credential is synced (or backed up or not).
/// Whether the credential is eligible for backup or syncing.
@@ -38,6 +39,7 @@ public record Credential(
string Country,
string Device,
string Nickname,
+ string? AuthenticatorDisplayName,
string UserId,
bool? BackupState = null,
bool? IsBackupEligible = null,