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