Skip to content

Commit

Permalink
fix(discovery-v1): fix Status Details property change from authentica…
Browse files Browse the repository at this point in the history
…tion to authenticated
  • Loading branch information
nan2iz committed Sep 14, 2021
1 parent 856ffd8 commit 7b9769a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/IBM.Watson.Discovery.v1/Model/StatusDetails.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ public class StatusDetails
/// <summary>
/// Indicates whether the credential is accepted by the target data source.
/// </summary>
[JsonProperty("authentication", NullValueHandling = NullValueHandling.Ignore)]
public bool? Authentication { get; set; }
[JsonProperty("authenticated", NullValueHandling = NullValueHandling.Ignore)]
public bool? Authenticated { get; set; }
/// <summary>
/// If `authentication` is `false`, a message describes why the authentication was unsuccessful.
/// If `authenticated` is `false`, a message describes why the authentication was unsuccessful.
/// </summary>
[JsonProperty("error_message", NullValueHandling = NullValueHandling.Ignore)]
public string ErrorMessage { get; set; }
Expand Down

0 comments on commit 7b9769a

Please sign in to comment.