CredentialDto
class CredentialDto
using Newtonsoft.Json;
using System.Collections.Generic;
using System.Diagnostics;
namespace Relativity.Transfer.Dto
{
[JsonObject(MemberSerialization.OptIn)]
internal class CredentialDto
{
[JsonProperty(PropertyName = "ArtifactID")]
public int ArtifactId { get; set; }
[JsonProperty(PropertyName = "Name")]
public string Name { get; set; }
[JsonProperty(PropertyName = "SecretValues")]
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
public Dictionary<string, string> SecretValues { get; set; }
[JsonProperty(PropertyName = "CredentialType")]
public CredentialTypeRefDto CredentialType { get; set; }
}
}