pub struct LoanVipCollateralDataResponse {
pub rows: Vec<LoanVipCollateralDataResponseRowsItem>,
pub total: i32,
}
Expand description
LoanVipCollateralDataResponse
JSON schema
{
"type": "object",
"required": [
"rows",
"total"
],
"properties": {
"rows": {
"type": "array",
"items": {
"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"
}
}
}
},
"total": {
"examples": [
1
],
"type": "integer",
"format": "int32"
}
}
}
Fields§
§rows: Vec<LoanVipCollateralDataResponseRowsItem>
§total: i32
Trait Implementations§
Source§impl Clone for LoanVipCollateralDataResponse
impl Clone for LoanVipCollateralDataResponse
Source§fn clone(&self) -> LoanVipCollateralDataResponse
fn clone(&self) -> LoanVipCollateralDataResponse
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 LoanVipCollateralDataResponse
impl<'de> Deserialize<'de> for LoanVipCollateralDataResponse
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<&LoanVipCollateralDataResponse> for LoanVipCollateralDataResponse
impl From<&LoanVipCollateralDataResponse> for LoanVipCollateralDataResponse
Source§fn from(value: &LoanVipCollateralDataResponse) -> Self
fn from(value: &LoanVipCollateralDataResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LoanVipCollateralDataResponse
impl RefUnwindSafe for LoanVipCollateralDataResponse
impl Send for LoanVipCollateralDataResponse
impl Sync for LoanVipCollateralDataResponse
impl Unpin for LoanVipCollateralDataResponse
impl UnwindSafe for LoanVipCollateralDataResponse
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