binance_client/http_api_v3/data/exchange_info/get/response.rs
1//!
2//! The exchange info GET response.
3//!
4
5use serde::Deserialize;
6
7use crate::http_api_v3::data::exchange_info::symbol::Symbol;
8
9///
10/// The `https://www.binance.com/api/v3/exchangeInfo` GET response.
11///
12#[derive(Debug, Deserialize, Clone)]
13#[serde(rename_all = "camelCase")]
14pub struct Response {
15 /// The server timezone name.
16 pub timezone: String,
17 /// The server time in milliseconds since Unix epoch.
18 pub server_time: i64,
19 /// The trading symbol data.
20 pub symbols: Vec<Symbol>,
21}