<PackageReference Include="Relativity.Server.Services.Interfaces.SDK" Version="5000.0.2" />

Securable<T>

public class Securable<T>
Generic class that indicates whether or not the given value is secured from the current user
public bool Secured { get; set; }

Whether or not the current user has permission to view the given value

public T Value { get; set; }

The value that may or may not be secured

public Securable()

public Securable(T value)

public static T op_Explicit(Securable<T> value)

public static Securable<T> op_Implicit(T value)