Order Type
Order Type is an enum that represents the type of an order.
Currently only MARKET orders are supported.
More order types will be added in the future.
You would normally not need to use it directly.
Structure
Section titled “Structure”class OrderType(Enum): """ Enum for order type. """ MARKET = "market"