pub struct LoanVipBorrowResponse {
pub collateral_account_id: String,
pub collateral_coin: String,
pub is_flexible_rate: String,
pub loan_account_id: String,
pub loan_amount: String,
pub loan_coin: String,
pub loan_term: Option<String>,
pub request_id: String,
}
Expand description
LoanVipBorrowResponse
JSON schema
{
"type": "object",
"required": [
"collateralAccountId",
"collateralCoin",
"isFlexibleRate",
"loanAccountId",
"loanAmount",
"loanCoin",
"requestId"
],
"properties": {
"collateralAccountId": {
"examples": [
"12345678,12345678,12345678"
],
"type": "string"
},
"collateralCoin": {
"examples": [
"BUSD,USDT,ETH"
],
"type": "string"
},
"isFlexibleRate": {
"examples": [
"No"
],
"type": "string"
},
"loanAccountId": {
"examples": [
"12345678"
],
"type": "string"
},
"loanAmount": {
"examples": [
"100.55"
],
"type": "string"
},
"loanCoin": {
"examples": [
"BTC"
],
"type": "string"
},
"loanTerm": {
"examples": [
"30"
],
"type": "string"
},
"requestId": {
"examples": [
"12345678"
],
"type": "string"
}
}
}
Fields§
§collateral_account_id: String
§collateral_coin: String
§is_flexible_rate: String
§loan_account_id: String
§loan_amount: String
§loan_coin: String
§loan_term: Option<String>
§request_id: String
Trait Implementations§
Source§impl Clone for LoanVipBorrowResponse
impl Clone for LoanVipBorrowResponse
Source§fn clone(&self) -> LoanVipBorrowResponse
fn clone(&self) -> LoanVipBorrowResponse
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 LoanVipBorrowResponse
impl Debug for LoanVipBorrowResponse
Source§impl<'de> Deserialize<'de> for LoanVipBorrowResponse
impl<'de> Deserialize<'de> for LoanVipBorrowResponse
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<&LoanVipBorrowResponse> for LoanVipBorrowResponse
impl From<&LoanVipBorrowResponse> for LoanVipBorrowResponse
Source§fn from(value: &LoanVipBorrowResponse) -> Self
fn from(value: &LoanVipBorrowResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LoanVipBorrowResponse
impl RefUnwindSafe for LoanVipBorrowResponse
impl Send for LoanVipBorrowResponse
impl Sync for LoanVipBorrowResponse
impl Unpin for LoanVipBorrowResponse
impl UnwindSafe for LoanVipBorrowResponse
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