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

QueryResponse

public class QueryResponse : IPagedResponse
The base class for a query to a strongly typed endpoint (ie. not Object Manager).
public int CurrentStartIndex { get; set; }

The start index for the current result set.

public Action FirstPage { get; set; }

The action to retrieve the first page.

public Action LastPage { get; set; }

The action to retrieve the last page.

public Action NextPage { get; set; }

The action to retrieve the next page.

public Action PreviousPage { get; set; }

The action to retrieve the previous page.

public int ResultCount { get; set; }

The count of records returned in the current result set.

public int TotalCount { get; set; }

The total count of all records without pagination.

public QueryResponse()