Skip to main content

bybit/models/
coin_info_response.rs

1use super::coin_info_item::CoinInfoItem;
2use serde::{Deserialize, Serialize};
3
4/// Coin information response
5#[derive(Debug, Serialize, Deserialize, Clone)]
6pub struct CoinInfoResponse {
7    /// List of coin information
8    pub rows: Vec<CoinInfoItem>,
9}