Skip to content

Commit

Permalink
fix: abTestID
Browse files Browse the repository at this point in the history
"abTestId" in ABTest should be "abTestID".

However, NewtonSoft was silently converting it correctly.
  • Loading branch information
Ant-hem committed Dec 19, 2019
1 parent 5ded8c0 commit a2240ad
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Algolia.Search/Models/Analytics/ABTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
* THE SOFTWARE.
*/

using Newtonsoft.Json;
using System;
using System.Collections.Generic;

Expand Down Expand Up @@ -59,6 +60,7 @@ public class ABTest
/// <summary>
/// Ab test ID
/// </summary>
[JsonProperty(PropertyName = "abTestID")]
public long? AbTestId { get; set; }

/// <summary>
Expand Down

0 comments on commit a2240ad

Please sign in to comment.