pub struct LoanVipLoanableDataResponseRowsItem {
pub _30d_daily_interest_rate: String,
pub _30d_yearly_interest_rate: String,
pub _60d_daily_interest_rate: String,
pub _60d_yearly_interest_rate: String,
pub flexible_daily_interest_rate: String,
pub flexible_yearly_interest_rate: String,
pub loan_coin: String,
pub max_limit: String,
pub min_limit: String,
pub vip_level: i64,
}
Expand description
LoanVipLoanableDataResponseRowsItem
JSON schema
{
"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"
}
}
}
Fields§
§_30d_daily_interest_rate: String
§_30d_yearly_interest_rate: String
§_60d_daily_interest_rate: String
§_60d_yearly_interest_rate: String
§flexible_daily_interest_rate: String
§flexible_yearly_interest_rate: String
§loan_coin: String
§max_limit: String
§min_limit: String
§vip_level: i64
Trait Implementations§
Source§impl Clone for LoanVipLoanableDataResponseRowsItem
impl Clone for LoanVipLoanableDataResponseRowsItem
Source§fn clone(&self) -> LoanVipLoanableDataResponseRowsItem
fn clone(&self) -> LoanVipLoanableDataResponseRowsItem
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 LoanVipLoanableDataResponseRowsItem
impl<'de> Deserialize<'de> for LoanVipLoanableDataResponseRowsItem
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<&LoanVipLoanableDataResponseRowsItem> for LoanVipLoanableDataResponseRowsItem
impl From<&LoanVipLoanableDataResponseRowsItem> for LoanVipLoanableDataResponseRowsItem
Source§fn from(value: &LoanVipLoanableDataResponseRowsItem) -> Self
fn from(value: &LoanVipLoanableDataResponseRowsItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LoanVipLoanableDataResponseRowsItem
impl RefUnwindSafe for LoanVipLoanableDataResponseRowsItem
impl Send for LoanVipLoanableDataResponseRowsItem
impl Sync for LoanVipLoanableDataResponseRowsItem
impl Unpin for LoanVipLoanableDataResponseRowsItem
impl UnwindSafe for LoanVipLoanableDataResponseRowsItem
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