class Bitstamp::UserTransactions

Public Instance Methods

all(options = {}) click to toggle source
# File lib/bitstamp/transactions.rb, line 3
def all(options = {})
  Bitstamp::Helper.parse_objects! Bitstamp::Net.post("/user_transactions", options).body, self.model
end
create(options = {}) click to toggle source
# File lib/bitstamp/transactions.rb, line 14
def create(options = {})
end
find(trans_id) click to toggle source
# File lib/bitstamp/transactions.rb, line 7
def find(trans_id)
  all = self.all
  index = all.index {|trans| trans.id.to_i == trans_id}

  return all[index] if index
end
update(options = {}) click to toggle source
# File lib/bitstamp/transactions.rb, line 17
def update(options = {})
end