/**
 * Represents the type of an order.
 */
export enum OrderType {

    BUY,
    SELL,
    LIMIT_BUY,
    LIMIT_SELL

}