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

Relativity.Services.Interfaces.Shared.Models.IPagedResponse

public interface IPagedResponse
int CurrentStartIndex { get; set; }

Gets the start index for the current result set.

Action FirstPage { get; set; }

Gets a RESTful operation that requests the first set of results.

Action LastPage { get; set; }

Gets a RESTful operation that requests the last set of results.

Action NextPage { get; set; }

Gets a RESTful operation that requests the next set of results.

Action PreviousPage { get; set; }

Gets a RESTful operation that requests the previous set of results.

int ResultCount { get; set; }

Gets the count of records returned in the current result set.

int TotalCount { get; set; }

Gets the total count of all records for the request.