bybit/models/fee_rate_list.rs
1use crate::prelude::*;
2
3/// Summarizes fee rate data for trading pairs.
4///
5/// Part of the `FeeRateResponse`, this struct contains a list of fee rate records for each trading pair. Bots use this to optimize trading strategies based on fee structures.
6#[derive(Debug, Serialize, Deserialize, Clone)]
7#[serde(rename_all = "camelCase")]
8pub struct FeeRateList {
9 /// A list of fee rate records.
10 ///
11 /// Contains maker and taker fee rates for each trading pair. Bots use this to calculate trading costs and optimize order placement.
12 pub list: Vec<FeeRate>,
13}