We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85987ea commit a14a53bCopy full SHA for a14a53b
Src/Fido2.Models/Objects/CredentialPropertiesOutput.cs
@@ -13,4 +13,12 @@ public class CredentialPropertiesOutput
13
/// </summary>
14
[JsonPropertyName("rk")]
15
public bool Rk { get; set; }
16
+
17
18
+ /// <summary>
19
+ /// This OPTIONAL property is a human-palatable description of the credential’s managing authenticator, chosen by the user.
20
+ /// https://w3c.github.io/webauthn/#dom-credentialpropertiesoutput-authenticatordisplayname
21
+ /// </summary>
22
+ [JsonPropertyName("authenticatorDisplayName")]
23
+ public string? AuthenticatorDisplayName { get; set; }
24
}
0 commit comments