pub struct LoanVipRepayHistoryResponse {
pub rows: Vec<LoanVipRepayHistoryResponseRowsItem>,
pub total: i32,
}
Expand description
LoanVipRepayHistoryResponse
JSON schema
{
"type": "object",
"required": [
"rows",
"total"
],
"properties": {
"rows": {
"type": "array",
"items": {
"type": "object",
"required": [
"collateralCoin",
"loanCoin",
"orderId",
"repayAmount",
"repayStatus",
"repayTime"
],
"properties": {
"collateralCoin": {
"examples": [
"BNB,BTC,ETH"
],
"type": "string"
},
"loanCoin": {
"examples": [
"BUSD"
],
"type": "string"
},
"orderId": {
"examples": [
"756783308056935434"
],
"type": "string"
},
"repayAmount": {
"examples": [
"10000"
],
"type": "string"
},
"repayStatus": {
"description": "Repaid, Repaying, Failed",
"examples": [
"Repaid"
],
"type": "string"
},
"repayTime": {
"examples": [
"1575018510000"
],
"type": "string"
}
}
}
},
"total": {
"examples": [
1
],
"type": "integer",
"format": "int32"
}
}
}
Fields§
§rows: Vec<LoanVipRepayHistoryResponseRowsItem>
§total: i32
Trait Implementations§
Source§impl Clone for LoanVipRepayHistoryResponse
impl Clone for LoanVipRepayHistoryResponse
Source§fn clone(&self) -> LoanVipRepayHistoryResponse
fn clone(&self) -> LoanVipRepayHistoryResponse
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 Debug for LoanVipRepayHistoryResponse
impl Debug for LoanVipRepayHistoryResponse
Source§impl<'de> Deserialize<'de> for LoanVipRepayHistoryResponse
impl<'de> Deserialize<'de> for LoanVipRepayHistoryResponse
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<&LoanVipRepayHistoryResponse> for LoanVipRepayHistoryResponse
impl From<&LoanVipRepayHistoryResponse> for LoanVipRepayHistoryResponse
Source§fn from(value: &LoanVipRepayHistoryResponse) -> Self
fn from(value: &LoanVipRepayHistoryResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LoanVipRepayHistoryResponse
impl RefUnwindSafe for LoanVipRepayHistoryResponse
impl Send for LoanVipRepayHistoryResponse
impl Sync for LoanVipRepayHistoryResponse
impl Unpin for LoanVipRepayHistoryResponse
impl UnwindSafe for LoanVipRepayHistoryResponse
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