use crate::spot::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct GetSubAccountFuturesAccountV2Resp {
#[serde(rename = "futureAccountResp", skip_serializing_if = "Option::is_none")]
pub future_account_resp: Option<Box<models::GetSubAccountFuturesAccountV2RespFutureAccountResp>>,
}
impl GetSubAccountFuturesAccountV2Resp {
pub fn new() -> GetSubAccountFuturesAccountV2Resp {
GetSubAccountFuturesAccountV2Resp {
future_account_resp: None,
}
}
}