class Bitstamp::UserTransactions
Public Instance Methods
all(options = {})
click to toggle source
# File lib/bitstamp/transactions.rb, line 3 def all(options = {}) path = options[:currency_pair] ? "/v2/user_transactions/#{options[:currency_pair]}" : "/v2/user_transactions" Bitstamp::Helper.parse_objects! Bitstamp::Net::post(path, options).to_str, self.model end
create(options = {})
click to toggle source
# File lib/bitstamp/transactions.rb, line 17 def create(options = {}) end
find(order_id, options = {})
click to toggle source
# File lib/bitstamp/transactions.rb, line 8 def find(order_id, options = {}) txs = self.all(options).find{|order| order.order_id.to_i == order_id.to_i} if txs.is_a?(Array) return txs else return [txs] end end
update(options={})
click to toggle source
# File lib/bitstamp/transactions.rb, line 20 def update(options={}) end