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