class Binance::Responses::DepthResponse
Overview
Typical Server Response:
{
"lastUpdateId": 1027024,
"bids": [
[
"4.00000000", // PRICE
"431.00000000" // QTY
]
],
"asks": [
[
"4.00000200",
"12.00000000"
]
]
}
Defined in:
binance/client/rest/responses/depth_response.crConstructors
-
.new(pull : JSON::PullParser)
Typical Server Response: { "lastUpdateId": 1027024, "bids": [ [ "4.00000000", // PRICE "431.00000000" // QTY ] ], "asks": [ [ "4.00000200", "12.00000000" ] ] }
Instance Method Summary
- #asks : Array(Binance::Responses::DepthEntry)
- #bids : Array(Binance::Responses::DepthEntry)
- #last_update_id : Int64
Instance methods inherited from class Binance::Responses::ServerResponse
body
body,
consume_body(response)
consume_body,
error_code : Int32?
error_code,
error_code=(error_code : Int32?)
error_code=,
error_message : String?
error_message,
error_message=(error_message : String?)
error_message=,
exception : Exception?
exception,
exception=(exception : Exception?)
exception=,
response : HTTP::Client::Response?
response,
response=(response : HTTP::Client::Response?)
response=,
success : Bool
success,
success=(success : Bool)
success=,
used_weight
used_weight
Constructor methods inherited from class Binance::Responses::ServerResponse
new(pull : JSON::PullParser)
new
Class methods inherited from class Binance::Responses::ServerResponse
consume_body(response)
consume_body
Constructor Detail
def self.new(pull : JSON::PullParser)
#
Typical Server Response:
{
"lastUpdateId": 1027024,
"bids": [
[
"4.00000000", // PRICE
"431.00000000" // QTY
]
],
"asks": [
[
"4.00000200",
"12.00000000"
]
]
}