1use crate::prelude::*; 2 3/// Response for creating a withdrawal 4#[derive(Debug, Serialize, Deserialize, Clone)] 5pub struct WithdrawResponse { 6 /// Withdrawal ID 7 pub id: String, 8}