use serde::Deserialize;
use crate::types::{other::RateLimit, trade::Symbol};
/// binance info
#[derive(Debug, Clone, Deserialize)]
pub struct BinanceInfo {
pub timezone: String,
pub server_time: u64,
pub rate_limits: Vec<RateLimit>,
pub exchange_filters: Vec<serde_json::Value>,
pub symbols: Vec<Symbol>,
}