<PackageReference Include="Relativity.Server.Import.SDK" Version="2.9.2" />

Relativity.DataExchange.Service.ChoiceInfo

public sealed class ChoiceInfo
Represents a Relativity choice 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 ChoiceInfo { public int ArtifactID { get; set; } public int CodeTypeID { get; set; } public string Name { get; set; } public int Order { get; set; } public int ParentArtifactID { get; set; } public ChoiceInfo(); public ChoiceInfo(DataRow row); } }