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