<PackageReference Include="Relativity.Server.EventHandler.SDK" Version="5000.0.3" />

Choice

public class Choice
Creates choice instances.
public int ArtifactID { get; }

Gets the Artifact ID value of a choice.

public bool IsSelected { get; set; }

This property is being deprecated because when a choice object is being created, it's always a selected choice.

public string Name { get; }

Gets the name of a choice.

public ChoiceCollection SubChoices { get; set; }

Gets and/or sets a choice collection associated with a given choice.

public Choice(int artifactID, string name)

Initializes a new instance of the Choice class.

public Choice(int artifactID, string name, bool selected, ChoiceCollection subChoices)

Initializes a new instance of the Choice class.