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}