Class: Coinbase::Exchange::APIResponse
- Inherits:
-
Object
- Object
- Coinbase::Exchange::APIResponse
show all
- Defined in:
- lib/coinbase/exchange/api_response.rb
Overview
Encapsulate data for an API response
Instance Attribute Summary collapse
Instance Method Summary
collapse
Constructor Details
Returns a new instance of APIResponse.
7
8
9
10
|
# File 'lib/coinbase/exchange/api_response.rb', line 7
def initialize(resp)
@received_at = Time.now
@response = resp
end
|
Instance Attribute Details
#received_at ⇒ Object
Returns the value of attribute received_at.
5
6
7
|
# File 'lib/coinbase/exchange/api_response.rb', line 5
def received_at
@received_at
end
|
Instance Method Details
#body ⇒ Object
16
17
18
|
# File 'lib/coinbase/exchange/api_response.rb', line 16
def body
fail NotImplementedError
end
|
20
21
22
|
# File 'lib/coinbase/exchange/api_response.rb', line 20
def
fail NotImplementedError
end
|
#raw ⇒ Object
12
13
14
|
# File 'lib/coinbase/exchange/api_response.rb', line 12
def raw
@response
end
|
#status ⇒ Object
24
25
26
|
# File 'lib/coinbase/exchange/api_response.rb', line 24
def status
fail NotImplementedError
end
|