pub struct LoanFlexibleRepayHistoryResponse {
pub rows: Vec<LoanFlexibleRepayHistoryResponseRowsItem>,
pub total: i32,
}
Expand description
LoanFlexibleRepayHistoryResponse
JSON schema
{
"type": "object",
"required": [
"rows",
"total"
],
"properties": {
"rows": {
"type": "array",
"items": {
"type": "object",
"required": [
"collateralCoin",
"collateralReturn",
"loanCoin",
"repayAmount",
"repayStatus",
"repayTime"
],
"properties": {
"collateralCoin": {
"examples": [
"BNB"
],
"type": "string"
},
"collateralReturn": {
"examples": [
"100"
],
"type": "string"
},
"loanCoin": {
"examples": [
"BUSD"
],
"type": "string"
},
"repayAmount": {
"examples": [
"10000"
],
"type": "string"
},
"repayStatus": {
"examples": [
"Repaid"
],
"type": "string"
},
"repayTime": {
"examples": [
1575018510000
],
"type": "integer",
"format": "int64"
}
}
}
},
"total": {
"examples": [
1
],
"type": "integer",
"format": "int32"
}
}
}
Fields§
§rows: Vec<LoanFlexibleRepayHistoryResponseRowsItem>
§total: i32
Trait Implementations§
Source§impl Clone for LoanFlexibleRepayHistoryResponse
impl Clone for LoanFlexibleRepayHistoryResponse
Source§fn clone(&self) -> LoanFlexibleRepayHistoryResponse
fn clone(&self) -> LoanFlexibleRepayHistoryResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'de> Deserialize<'de> for LoanFlexibleRepayHistoryResponse
impl<'de> Deserialize<'de> for LoanFlexibleRepayHistoryResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&LoanFlexibleRepayHistoryResponse> for LoanFlexibleRepayHistoryResponse
impl From<&LoanFlexibleRepayHistoryResponse> for LoanFlexibleRepayHistoryResponse
Source§fn from(value: &LoanFlexibleRepayHistoryResponse) -> Self
fn from(value: &LoanFlexibleRepayHistoryResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LoanFlexibleRepayHistoryResponse
impl RefUnwindSafe for LoanFlexibleRepayHistoryResponse
impl Send for LoanFlexibleRepayHistoryResponse
impl Sync for LoanFlexibleRepayHistoryResponse
impl Unpin for LoanFlexibleRepayHistoryResponse
impl UnwindSafe for LoanFlexibleRepayHistoryResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more