/**
 * This will either be the empty string "", "simple", "bracket", "oco", or "oto".
 */
export enum OrderClass {
  SIMPLE = "simple",
  BRACKET = "bracket",
  OCO = "oco",
  OTO = "oto",
  EMPTY = "",
}
