<PackageReference Include="Relativity.Server.Services.Interfaces.SDK" Version="13.6.1" />

Relativity.Services.Interfaces.SearchProvider.Models.SearchProviderRequest

public class SearchProviderRequest
Represents a dto for creating or updating search providers.
public bool Active { get; set; }

Gets or sets if the Search Provider object is active

public bool AvailableForSearching { get; set; }

Gets or sets if the Search Provider object is available for searching

public string DLL { get; set; }

Gets or sets the dll name for the given search provider.

public int MaxRank { get; set; }

Gets or sets the minimum rank returned for the given search provider.

public int MinRank { get; set; }

Gets or sets the minimum rank returned for the given search provider.

public string Name { get; set; }

Gets or sets the name for the given search provider.

public int Order { get; set; }

Get or set the order for the given search provider.

public string Parameters { get; set; }

Gets or sets the parameters for the given search provider.

public int RankCacheMultiplier { get; set; }

Gets or sets the current search provider ranking multiplier for the given search provider.

Default constructor. Defaults all values to null.