Relativity.Transfer.Credential
namespace Relativity.Transfer
{
public sealed class Credential
{
public int ArtifactId { get; }
public string CredentialType { get; }
public string Name { get; }
public Credential(int artifactId, string name, string credentialType, IDictionary<string, string> secrets);
}
}