pub struct LoanLoanableDataResponse {
pub rows: Vec<LoanLoanableDataResponseRowsItem>,
pub total: i32,
}
Expand description
LoanLoanableDataResponse
JSON schema
{
"type": "object",
"required": [
"rows",
"total"
],
"properties": {
"rows": {
"type": "array",
"items": {
"type": "object",
"required": [
"_14dDailyInterestRate",
"_14dHourlyInterestRate",
"_180dDailyInterestRate",
"_180dHourlyInterestRate",
"_30dDailyInterestRate",
"_30dHourlyInterestRate",
"_7dDailyInterestRate",
"_7dHourlyInterestRate",
"_90dDailyInterestRate",
"_90dHourlyInterestRate",
"loanCoin",
"maxLimit",
"minLimit",
"vipLevel"
],
"properties": {
"_14dDailyInterestRate": {
"examples": [
"0.000118"
],
"type": "string"
},
"_14dHourlyInterestRate": {
"examples": [
"0.00000491"
],
"type": "string"
},
"_180dDailyInterestRate": {
"examples": [
"0.000151"
],
"type": "string"
},
"_180dHourlyInterestRate": {
"examples": [
"0.00000631"
],
"type": "string"
},
"_30dDailyInterestRate": {
"examples": [
"0.000136"
],
"type": "string"
},
"_30dHourlyInterestRate": {
"examples": [
"0.00000567"
],
"type": "string"
},
"_7dDailyInterestRate": {
"examples": [
"0.000118"
],
"type": "string"
},
"_7dHourlyInterestRate": {
"examples": [
"0.00000491"
],
"type": "string"
},
"_90dDailyInterestRate": {
"examples": [
"0.000143"
],
"type": "string"
},
"_90dHourlyInterestRate": {
"examples": [
"0.00000596"
],
"type": "string"
},
"loanCoin": {
"examples": [
"BUSD"
],
"type": "string"
},
"maxLimit": {
"examples": [
"1000000"
],
"type": "string"
},
"minLimit": {
"examples": [
"100"
],
"type": "string"
},
"vipLevel": {
"examples": [
1
],
"type": "integer",
"format": "int32"
}
}
}
},
"total": {
"examples": [
1
],
"type": "integer",
"format": "int32"
}
}
}
Fields§
§rows: Vec<LoanLoanableDataResponseRowsItem>
§total: i32
Trait Implementations§
Source§impl Clone for LoanLoanableDataResponse
impl Clone for LoanLoanableDataResponse
Source§fn clone(&self) -> LoanLoanableDataResponse
fn clone(&self) -> LoanLoanableDataResponse
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 LoanLoanableDataResponse
impl Debug for LoanLoanableDataResponse
Source§impl<'de> Deserialize<'de> for LoanLoanableDataResponse
impl<'de> Deserialize<'de> for LoanLoanableDataResponse
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<&LoanLoanableDataResponse> for LoanLoanableDataResponse
impl From<&LoanLoanableDataResponse> for LoanLoanableDataResponse
Source§fn from(value: &LoanLoanableDataResponse) -> Self
fn from(value: &LoanLoanableDataResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LoanLoanableDataResponse
impl RefUnwindSafe for LoanLoanableDataResponse
impl Send for LoanLoanableDataResponse
impl Sync for LoanLoanableDataResponse
impl Unpin for LoanLoanableDataResponse
impl UnwindSafe for LoanLoanableDataResponse
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