Skip to content

Commit

Permalink
Merge pull request #438 from JLedel/436-running-aql-query-pascal-case
Browse files Browse the repository at this point in the history
Fixes #436 Properties in RunningAqlQuery class should be PascalCase instead of lowerCase
  • Loading branch information
DiscoPYF authored Feb 7, 2023
2 parents 6f2883b + 3a23d08 commit 961e89d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions arangodb-net-standard/AqlFunctionApi/Models/RunningAqlQuery.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,39 +17,39 @@ public class RunningAqlQuery
/// <summary>
/// The name of the database the query runs in.
/// </summary>
public string database { get; set; }
public string Database { get; set; }

/// <summary>
/// The name of the user that started the query.
/// </summary>
public string user { get; set; }
public string User { get; set; }

/// <summary>
/// The query string (potentially truncated).
/// </summary>
public string query { get; set; }
public string Query { get; set; }

/// <summary>
/// The bind parameter values used by the query.
/// </summary>
public Dictionary<string, object> bindVars { get; set; }
public Dictionary<string, object> BindVars { get; set; }

/// <summary>
/// The date and time when the query was started.
/// </summary>
public DateTime? started { get; set; }
public DateTime? Started { get; set; }

/// <summary>
/// The query’s run time up to the point the list of queries was queried.
/// </summary>
public string runTime { get; set; }
public string RunTime { get; set; }

/// <summary>
/// The query’s current execution state.
/// See online documentation
/// for more information.
/// </summary>
public string state { get; set; }
public string State { get; set; }

/// <summary>
/// Indicates whether or not the query uses a streaming cursor.
Expand Down

0 comments on commit 961e89d

Please sign in to comment.