Order Side is an enum that represents the side of an order. It can be either BUY or SELL.
BUY
SELL
You would normally not need to use it directly.
class OrderSide(Enum): """ Enum for order side. """ BUY = "buy" SELL = "sell"