Relativity.DataExchange.Service.CaseInfo
Represents a Relativity case or workspace information data object. This class cannot be inherited, backwards compatibility isn't guaranteed, and should never be consumed by API users.
namespace Relativity.DataExchange.Service
{
public sealed class CaseInfo
{
public int ArtifactID { get; set; }
public bool AsImportAllowed { get; set; }
public string DocumentPath { get; set; }
public string DownloadHandlerURL { get; set; }
public bool EnableDataGrid { get; set; }
public bool ExportAllowed { get; set; }
public int MatterArtifactID { get; set; }
public string Name { get; set; }
public int RootArtifactID { get; set; }
public int RootFolderID { get; set; }
public int StatusCodeArtifactID { get; set; }
public CaseInfo();
public CaseInfo(DataRow row);
}
}