Skip to main content

bybit/models/
transferable_coin_request.rs

1use crate::prelude::*;
2
3/// Request for getting transferable coin list
4#[derive(Debug, Serialize, Deserialize, Clone)]
5pub struct TransferableCoinRequest<'a> {
6    /// From account type
7    #[serde(rename = "fromAccountType")]
8    pub from_account_type: &'a str,
9    /// To account type
10    #[serde(rename = "toAccountType")]
11    pub to_account_type: &'a str,
12}