Skip to content

Commit 7975bd1

Browse files
committed
fix(discovery-v1): fix status details property. Change from authentication to authenticated
1 parent c1ac34a commit 7975bd1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Scripts/Services/Discovery/V1/Model/StatusDetails.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ public class StatusDetails
2727
/// <summary>
2828
/// Indicates whether the credential is accepted by the target data source.
2929
/// </summary>
30-
[JsonProperty("authentication", NullValueHandling = NullValueHandling.Ignore)]
31-
public bool? Authentication { get; set; }
30+
[JsonProperty("authenticated", NullValueHandling = NullValueHandling.Ignore)]
31+
public bool? Authenticated { get; set; }
3232
/// <summary>
33-
/// If `authentication` is `false`, a message describes why the authentication was unsuccessful.
33+
/// If `authenticated` is `false`, a message describes why the authentication was unsuccessful.
3434
/// </summary>
3535
[JsonProperty("error_message", NullValueHandling = NullValueHandling.Ignore)]
3636
public string ErrorMessage { get; set; }

0 commit comments

Comments
 (0)