use serde::Deserialize;
use crate::http_api_v3::data::exchange_info::symbol::Symbol;
#[derive(Debug, Deserialize, Clone)]
#[serde(rename_all = "camelCase")]
pub struct Response {
pub timezone: String,
pub server_time: i64,
pub symbols: Vec<Symbol>,
}