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