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.
2 parents c7dffc2 + 91a235d commit bd3df95Copy full SHA for bd3df95
src/ReCaptcha/Models/ValidationResponse.cs
@@ -17,6 +17,18 @@ public class ValidationResponse
17
[JsonProperty(PropertyName = "success")]
18
public bool Success { get; set; }
19
20
+ /// <summary>
21
+ /// The score for this request (0.0 - 1.0). Only used with reCAPTCHA V3.
22
+ /// </summary>
23
+ [JsonProperty(PropertyName = "score")]
24
+ public double? Score { get; set; } = null;
25
+
26
27
+ /// The action name for this request (important to verify). Only used with reCAPTCHA V3.
28
29
+ [JsonProperty(PropertyName = "action")]
30
+ public string? Action { get; set; } = null;
31
32
/// <summary>
33
/// Timestamp of the challenge load.
34
/// </summary>
0 commit comments