binance-client 1.7.0

The Binance cryptocurrency exchange client
Documentation
1
2
3
4
5
6
7
8
9
10
//!
//! The klines GET response.
//!

use crate::http_api_v3::data::klines::kline::Kline;

///
/// The `https://www.binance.com/api/v3/klines` GET response.
///
pub type Response = Vec<Kline>;