Class BaseSearchMatchResponseValue<T>
- Namespace
- Textkernel.Tx.Models.API.Matching
- Assembly
- Textkernel.Tx.SDK.dll
Base class for searches/matches response values
public class BaseSearchMatchResponseValue<T>
Type Parameters
T
- Inheritance
-
BaseSearchMatchResponseValue<T>
- Derived
- Inherited Members
Properties
CurrentCount
The number of results returned in this response
public int CurrentCount { get; set; }
Property Value
Matches
The list of matches for the search/match
public List<T> Matches { get; set; }
Property Value
- List<T>
TotalCount
The total number of results that fit the query/criteria
public int TotalCount { get; set; }