pub struct LoanVipCollateralDataResponseRowsItem {
pub _1st_collateral_range: String,
pub _1st_collateral_ratio: String,
pub _2nd_collateral_range: String,
pub _2nd_collateral_ratio: String,
pub _3rd_collateral_range: String,
pub _3rd_collateral_ratio: String,
pub _4th_collateral_range: String,
pub _4th_collateral_ratio: String,
pub collateral_coin: String,
}
Expand description
LoanVipCollateralDataResponseRowsItem
JSON schema
{
"type": "object",
"required": [
"_1stCollateralRange",
"_1stCollateralRatio",
"_2ndCollateralRange",
"_2ndCollateralRatio",
"_3rdCollateralRange",
"_3rdCollateralRatio",
"_4thCollateralRange",
"_4thCollateralRatio",
"collateralCoin"
],
"properties": {
"_1stCollateralRange": {
"examples": [
"1-10000000"
],
"type": "string"
},
"_1stCollateralRatio": {
"examples": [
"100%"
],
"type": "string"
},
"_2ndCollateralRange": {
"examples": [
"10000000-100000000"
],
"type": "string"
},
"_2ndCollateralRatio": {
"examples": [
"80%"
],
"type": "string"
},
"_3rdCollateralRange": {
"examples": [
"100000000-1000000000"
],
"type": "string"
},
"_3rdCollateralRatio": {
"examples": [
"60%"
],
"type": "string"
},
"_4thCollateralRange": {
"examples": [
">10000000000"
],
"type": "string"
},
"_4thCollateralRatio": {
"examples": [
"0%"
],
"type": "string"
},
"collateralCoin": {
"examples": [
"BUSD"
],
"type": "string"
}
}
}
Fields§
§_1st_collateral_range: String
§_1st_collateral_ratio: String
§_2nd_collateral_range: String
§_2nd_collateral_ratio: String
§_3rd_collateral_range: String
§_3rd_collateral_ratio: String
§_4th_collateral_range: String
§_4th_collateral_ratio: String
§collateral_coin: String
Trait Implementations§
Source§impl Clone for LoanVipCollateralDataResponseRowsItem
impl Clone for LoanVipCollateralDataResponseRowsItem
Source§fn clone(&self) -> LoanVipCollateralDataResponseRowsItem
fn clone(&self) -> LoanVipCollateralDataResponseRowsItem
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 LoanVipCollateralDataResponseRowsItem
impl<'de> Deserialize<'de> for LoanVipCollateralDataResponseRowsItem
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<&LoanVipCollateralDataResponseRowsItem> for LoanVipCollateralDataResponseRowsItem
impl From<&LoanVipCollateralDataResponseRowsItem> for LoanVipCollateralDataResponseRowsItem
Source§fn from(value: &LoanVipCollateralDataResponseRowsItem) -> Self
fn from(value: &LoanVipCollateralDataResponseRowsItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LoanVipCollateralDataResponseRowsItem
impl RefUnwindSafe for LoanVipCollateralDataResponseRowsItem
impl Send for LoanVipCollateralDataResponseRowsItem
impl Sync for LoanVipCollateralDataResponseRowsItem
impl Unpin for LoanVipCollateralDataResponseRowsItem
impl UnwindSafe for LoanVipCollateralDataResponseRowsItem
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