use crate::spot::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct GetEthStakingAccountV2RespHoldings {
#[serde(rename = "bethAmount", skip_serializing_if = "Option::is_none")]
pub beth_amount: Option<String>,
#[serde(rename = "wbethAmount", skip_serializing_if = "Option::is_none")]
pub wbeth_amount: Option<String>,
}
impl GetEthStakingAccountV2RespHoldings {
pub fn new() -> GetEthStakingAccountV2RespHoldings {
GetEthStakingAccountV2RespHoldings {
beth_amount: None,
wbeth_amount: None,
}
}
}