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

    BUY,
    SELL,
    BOTH

}