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

GetApplicationInstallDetailsResponse

Returns the application install details for a given application and application install ID.

The ID of the application associated with the install.

public int ApplicationInstallID { get; set; }

The identifier of the application install used to query for the installation details.

public int CurrentStartIndex { get; set; }

Gets the starting index for the current page.

public List<ApplicationInstallDetail> Details { get; set; }

Holds the artifact install details for each artifact within the application.

public Action FirstPage { get; set; }

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

public InstallStatus InstallStatus { get; set; }

The status of the application install.

public Action LastPage { get; set; }

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

public List<string> Messages { get; set; }

An informative list of warning messages explaining a failed application install.

public Action NextPage { get; set; }

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

public Action PreviousPage { get; set; }

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

public int ResultCount { get; set; }

Gets the total number of records available in the current page.

public int TotalCount { get; set; }

Gets the total number of records available.

public Version Version { get; set; }

The version number of the application.