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