class BitstampClient::MarketOrder

Constants

BUY_CODE
SELL_CODE

Private Instance Methods

default_buy() click to toggle source
# File lib/bitstamp_client/models/market_order.rb, line 17
def default_buy
  type == BUY_CODE
end
default_sell() click to toggle source
# File lib/bitstamp_client/models/market_order.rb, line 21
def default_sell
  type == SELL_CODE
end