pub struct LoanFlexibleRepayHistoryResponseRowsItem {
pub collateral_coin: String,
pub collateral_return: String,
pub loan_coin: String,
pub repay_amount: String,
pub repay_status: String,
pub repay_time: i64,
}
Expand description
LoanFlexibleRepayHistoryResponseRowsItem
JSON schema
{
"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"
}
}
}
Fields§
§collateral_coin: String
§collateral_return: String
§loan_coin: String
§repay_amount: String
§repay_status: String
§repay_time: i64
Trait Implementations§
Source§impl Clone for LoanFlexibleRepayHistoryResponseRowsItem
impl Clone for LoanFlexibleRepayHistoryResponseRowsItem
Source§fn clone(&self) -> LoanFlexibleRepayHistoryResponseRowsItem
fn clone(&self) -> LoanFlexibleRepayHistoryResponseRowsItem
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 LoanFlexibleRepayHistoryResponseRowsItem
impl<'de> Deserialize<'de> for LoanFlexibleRepayHistoryResponseRowsItem
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<&LoanFlexibleRepayHistoryResponseRowsItem> for LoanFlexibleRepayHistoryResponseRowsItem
impl From<&LoanFlexibleRepayHistoryResponseRowsItem> for LoanFlexibleRepayHistoryResponseRowsItem
Source§fn from(value: &LoanFlexibleRepayHistoryResponseRowsItem) -> Self
fn from(value: &LoanFlexibleRepayHistoryResponseRowsItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LoanFlexibleRepayHistoryResponseRowsItem
impl RefUnwindSafe for LoanFlexibleRepayHistoryResponseRowsItem
impl Send for LoanFlexibleRepayHistoryResponseRowsItem
impl Sync for LoanFlexibleRepayHistoryResponseRowsItem
impl Unpin for LoanFlexibleRepayHistoryResponseRowsItem
impl UnwindSafe for LoanFlexibleRepayHistoryResponseRowsItem
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