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

InstallStatus

public class InstallStatus
public Action CancelInstallAction { get; set; }

The action to cancel the application installation.

public InstallStatusCode Code { get; set; }

The status of the application installation.

public string Details { get; set; }

Any additional details associated with the installation; In the case of failed installs, this can include exception details.

public Action GetDetailsAction { get; set; }

The action to retrieve the detail of the application installation.

public string Message { get; set; }

The message associated with the installation.

public Action RetryInstallAction { get; set; }

The action to retry the application installation.

public InstallStatus()