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.
Usage
You would normally not need to use it directly.
Structure
class OrderType(Enum): """ Enum for order type. """ MARKET = "market"