<PackageReference Include="Relativity.Export.SDK" Version="3.2.7" />

Response

public class Response
Container for API responses.
public string ErrorCode { get; }

Gets error code with failure reason.

public string ErrorMessage { get; }

Gets optional error message explaining why the call has failed.

public Guid ExportJobID { get; }

Gets export Job to which the API call was related.

public bool IsSuccess { get; }

Gets a value indicating whether the call was successful.

public Response(Guid exportJobID, bool isSuccess, string errorMessage, string errorCode)

Initializes a new instance of the Response class.

public static Response CreateForSuccess(Guid exportJobID)

Helper function to be used only in API implementation.