Skip to main content

bybit/models/
withdrawable_amount_request.rs

1use crate::prelude::*;
2
3/// Request for getting withdrawable amount
4#[derive(Debug, Serialize, Deserialize, Clone)]
5pub struct WithdrawableAmountRequest<'a> {
6    /// Coin name, uppercase only
7    pub coin: &'a str,
8}