bybit/models/switch_list.rs
1use crate::prelude::*;
2
3#[derive(Debug, Serialize, Deserialize, Clone)]
4#[serde(rename_all = "camelCase")]
5pub struct SwitchList {
6 /// A list of collateral coin status updates.
7 ///
8 /// Contains details of each coin’s collateral setting (enabled or disabled). Bots use this to verify the new collateral configuration.
9 pub list: Vec<SwitchListData>,
10}