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