pub struct LoanVipLoanableDataResponse {
pub rows: Vec<LoanVipLoanableDataResponseRowsItem>,
pub total: i64,
}
Expand description
LoanVipLoanableDataResponse
JSON schema
{
"type": "object",
"required": [
"rows",
"total"
],
"properties": {
"rows": {
"type": "array",
"items": {
"type": "object",
"required": [
"_30dDailyInterestRate",
"_30dYearlyInterestRate",
"_60dDailyInterestRate",
"_60dYearlyInterestRate",
"_flexibleDailyInterestRate",
"_flexibleYearlyInterestRate",
"loanCoin",
"maxLimit",
"minLimit",
"vipLevel"
],
"properties": {
"_30dDailyInterestRate": {
"examples": [
"0.000136"
],
"type": "string"
},
"_30dYearlyInterestRate": {
"examples": [
"0.03450"
],
"type": "string"
},
"_60dDailyInterestRate": {
"examples": [
"0.000145"
],
"type": "string"
},
"_60dYearlyInterestRate": {
"examples": [
"0.04103"
],
"type": "string"
},
"_flexibleDailyInterestRate": {
"examples": [
"0.001503"
],
"type": "string"
},
"_flexibleYearlyInterestRate": {
"examples": [
"0.548595"
],
"type": "string"
},
"loanCoin": {
"examples": [
"BUSD"
],
"type": "string"
},
"maxLimit": {
"examples": [
"1000000"
],
"type": "string"
},
"minLimit": {
"examples": [
"100"
],
"type": "string"
},
"vipLevel": {
"examples": [
1
],
"type": "integer"
}
}
}
},
"total": {
"examples": [
1
],
"type": "integer"
}
}
}
Fields§
§rows: Vec<LoanVipLoanableDataResponseRowsItem>
§total: i64
Trait Implementations§
Source§impl Clone for LoanVipLoanableDataResponse
impl Clone for LoanVipLoanableDataResponse
Source§fn clone(&self) -> LoanVipLoanableDataResponse
fn clone(&self) -> LoanVipLoanableDataResponse
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 LoanVipLoanableDataResponse
impl Debug for LoanVipLoanableDataResponse
Source§impl<'de> Deserialize<'de> for LoanVipLoanableDataResponse
impl<'de> Deserialize<'de> for LoanVipLoanableDataResponse
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<&LoanVipLoanableDataResponse> for LoanVipLoanableDataResponse
impl From<&LoanVipLoanableDataResponse> for LoanVipLoanableDataResponse
Source§fn from(value: &LoanVipLoanableDataResponse) -> Self
fn from(value: &LoanVipLoanableDataResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LoanVipLoanableDataResponse
impl RefUnwindSafe for LoanVipLoanableDataResponse
impl Send for LoanVipLoanableDataResponse
impl Sync for LoanVipLoanableDataResponse
impl Unpin for LoanVipLoanableDataResponse
impl UnwindSafe for LoanVipLoanableDataResponse
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