<PackageReference Include="Relativity.Productions.SDK" Version="12.1.13" />

PagedImageFilesResult

public class PagedImageFilesResult
Paged result containing requested ImageFile and other metadata.
public List<string> Errors { get; set; }

All errors associated with the current page.

public List<ImageFile> ImageFiles { get; set; }

Results of image file data. ImageFile

public int? NextPage { get; set; }

Start index of next page. Null if there is no next page.

public string NextUri { get; set; }

Uri of next page. Null if there is no next page.

public int? PreviousPage { get; set; }

Start Index of prevous page. Null if there is no previous page.

public string PreviousUri { get; set; }

Uri of previous page. Null if there is no previous page.

public int ResultCount { get; set; }

Total number of results returned in the current page.

public Guid RunIdentifier { get; set; }

Unique run identifier.

public int StartIndex { get; set; }

Current start index of results.

public int TotalResultSet { get; set; }

Total number of results for this response.

CTOR.