Class: Bitstamp::UserTransactions
Instance Attribute Summary
Attributes inherited from Collection
#access_token, #model, #module, #name, #path
Instance Method Summary
collapse
Methods inherited from Collection
#initialize
Instance Method Details
#all(options = {}) ⇒ Object
#create(options = {}) ⇒ Object
14
15
|
# File 'lib/bitstamp/transactions.rb', line 14
def create(options = {})
end
|
#find(trans_id) ⇒ Object
7
8
9
10
11
12
|
# 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 = {}) ⇒ Object
17
18
|
# File 'lib/bitstamp/transactions.rb', line 17
def update(options = {})
end
|