pub struct LoanLtvAdjustmentHistoryResponse {
pub rows: Vec<LoanLtvAdjustmentHistoryResponseRowsItem>,
pub total: i32,
}
Expand description
LoanLtvAdjustmentHistoryResponse
JSON schema
{
"type": "object",
"required": [
"rows",
"total"
],
"properties": {
"rows": {
"type": "array",
"items": {
"type": "object",
"required": [
"adjustTime",
"afterLTV",
"amount",
"collateralCoin",
"direction",
"loanCoin",
"orderId",
"preLTV"
],
"properties": {
"adjustTime": {
"examples": [
1575018510000
],
"type": "integer",
"format": "int64"
},
"afterLTV": {
"examples": [
"0.56"
],
"type": "string"
},
"amount": {
"examples": [
"5.235"
],
"type": "string"
},
"collateralCoin": {
"examples": [
"BNB"
],
"type": "string"
},
"direction": {
"examples": [
"ADDITIONAL"
],
"type": "string"
},
"loanCoin": {
"examples": [
"BUSD"
],
"type": "string"
},
"orderId": {
"examples": [
756783308056935434
],
"type": "integer",
"format": "int64"
},
"preLTV": {
"examples": [
"0.78"
],
"type": "string"
}
}
}
},
"total": {
"examples": [
1
],
"type": "integer",
"format": "int32"
}
}
}
Fields§
§rows: Vec<LoanLtvAdjustmentHistoryResponseRowsItem>
§total: i32
Trait Implementations§
Source§impl Clone for LoanLtvAdjustmentHistoryResponse
impl Clone for LoanLtvAdjustmentHistoryResponse
Source§fn clone(&self) -> LoanLtvAdjustmentHistoryResponse
fn clone(&self) -> LoanLtvAdjustmentHistoryResponse
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 LoanLtvAdjustmentHistoryResponse
impl<'de> Deserialize<'de> for LoanLtvAdjustmentHistoryResponse
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<&LoanLtvAdjustmentHistoryResponse> for LoanLtvAdjustmentHistoryResponse
impl From<&LoanLtvAdjustmentHistoryResponse> for LoanLtvAdjustmentHistoryResponse
Source§fn from(value: &LoanLtvAdjustmentHistoryResponse) -> Self
fn from(value: &LoanLtvAdjustmentHistoryResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LoanLtvAdjustmentHistoryResponse
impl RefUnwindSafe for LoanLtvAdjustmentHistoryResponse
impl Send for LoanLtvAdjustmentHistoryResponse
impl Sync for LoanLtvAdjustmentHistoryResponse
impl Unpin for LoanLtvAdjustmentHistoryResponse
impl UnwindSafe for LoanLtvAdjustmentHistoryResponse
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