Skip to content

Nest - TokenCountProperty missing Analyzer #1744

@attilalaszlo

Description

@attilalaszlo

In the ITokenCountProperty interface, the JsonProperty is missing from the Analyzer property.

before:

public interface ITokenCountProperty : INumberProperty{
string Analyzer { get; set; }
}

fix:

public interface ITokenCountProperty : INumberProperty
{
[JsonProperty("analyzer")]
string Analyzer { get; set; }
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions