usesuper::request::Request;useserde::Deserialize;/// The balance of a Monzo Account
#[derive(Deserialize, Debug)]pubstructBalance{/// The account balance, in the minor units of the listed currency. ie for
/// GBP, the balance is in pence.
pubbalance:i64,
/// The total account balance. I haven't figured out what the difference is
/// yet
pubtotal_balance:i64,
/// three-letter currency code for the account
pubcurrency: String,
/// total expenditure so far this calendar day
pubspend_today:i64,
}// Since there are no fields to set on this request, we simply forward the
// underlying 'Request'
pub(crate)typeBalanceRequest=Request<Balance>;