/**
 * Represents which side this order was on:
 *
 * - buy
 * - sell
 */
export enum OrderSide {
  BUY = "buy",
  SELL = "sell",
}
