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