//!//! The account balance.
//!userust_decimal::Decimal;useserde::Deserialize;////// The account balance.
///#[derive(Debug, Deserialize, Clone)]#[serde(rename_all ="camelCase")]pubstructBalance{/// The token name.
pubasset: String,
/// The free balance amount, which can be used in trades.
pubfree: Decimal,
/// The locked balance amount, which is unavailable at the moment.
publocked: Decimal,
}