WorkspaceDto
class WorkspaceDto
using Newtonsoft.Json;
using System;
namespace Relativity.Transfer.Dto
{
[JsonObject(MemberSerialization.OptIn)]
internal class WorkspaceDto
{
[JsonProperty(PropertyName = "Case Artifact ID")]
public int ArtifactId { get; set; }
[JsonProperty(PropertyName = "Download Handler Application Path")]
[Obsolete("WebAPI support will be removed in upcoming releases. In order to communicate with Relativity use Kepler Services. For more information, see KeplerServiceBase class.")]
public string DownloadHandlerUrl { get; set; }
[JsonProperty(PropertyName = "Name")]
public string Name { get; set; }
[JsonProperty(PropertyName = "Default File Location", NullValueHandling = NullValueHandling.Ignore)]
public string DefaultFileLocation { get; set; }
public WorkspaceDto()
{
ArtifactId = 0;
DefaultFileLocation = null;
DownloadHandlerUrl = null;
Name = null;
}
}
}