whisky_common/models/
account_info.rs1use serde::{Deserialize, Serialize};
2
3#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
4#[serde(rename_all = "camelCase")]
5pub struct AccountInfo {
6 pub active: bool,
7 pub pool_id: String,
8 pub balance: String,
9 pub rewards: String,
10 pub withdrawals: String,
11}