openlimits_binance/model/
exchange_information.rs

1use serde::Deserialize;
2use serde::Serialize;
3use super::ExchangeFilter;
4use super::RateLimit;
5use super::Symbol;
6
7/// This struct represents informations about the openlimits-exchange
8#[derive(Debug, Serialize, Deserialize, Clone)]
9#[serde(rename_all = "camelCase")]
10pub struct ExchangeInformation {
11    pub timezone: String,
12    pub server_time: u64,
13    pub rate_limits: Vec<RateLimit>,
14    pub exchange_filters: Vec<ExchangeFilter>,
15    pub symbols: Vec<Symbol>,
16}