use crate::spot::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct GetManagedSubaccountInfoV1Resp {
#[serde(rename = "managerSubUserInfoVoList", skip_serializing_if = "Option::is_none")]
pub manager_sub_user_info_vo_list: Option<Vec<models::GetManagedSubaccountInfoV1RespManagerSubUserInfoVoListInner>>,
#[serde(rename = "total", skip_serializing_if = "Option::is_none")]
pub total: Option<i32>,
}
impl GetManagedSubaccountInfoV1Resp {
pub fn new() -> GetManagedSubaccountInfoV1Resp {
GetManagedSubaccountInfoV1Resp {
manager_sub_user_info_vo_list: None,
total: None,
}
}
}