-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Closed
Description
PercolateMany has TrackScores() method for tracking scores, but in PercolateResponse.cs, PercolatorMatch class doesn't have Score field.
Should it look like this?
public class PercolatorMatch
{
[JsonProperty(PropertyName = "_index")]
public string Index { get; set; }
[JsonProperty(PropertyName = "_id")]
public string Id { get; set; }
[JsonProperty(PropertyName = "highlight")]
public Dictionary<string, IList<string>> Highlight { get; set; }
[JsonProperty(PropertyName = "_score")]
public double? Score { get; set; }
}Metadata
Metadata
Assignees
Labels
No labels