pub struct LoanVipRequestDataResponse {
pub rows: Vec<LoanVipRequestDataResponseRowsItem>,
pub total: i64,
}
Expand description
LoanVipRequestDataResponse
JSON schema
{
"type": "object",
"required": [
"rows",
"total"
],
"properties": {
"rows": {
"type": "array",
"items": {
"type": "object",
"required": [
"collateralAccountId",
"collateralCoin",
"loanAccountId",
"loanAmount",
"loanCoin",
"loanTerm",
"orderId",
"requestId",
"status"
],
"properties": {
"collateralAccountId": {
"examples": [
"12345678,12345678,12345678"
],
"type": "string"
},
"collateralCoin": {
"examples": [
"BUSD,USDT,ETH"
],
"type": "string"
},
"loanAccountId": {
"examples": [
"12345678"
],
"type": "string"
},
"loanAmount": {
"examples": [
"100.5"
],
"type": "string"
},
"loanCoin": {
"examples": [
"BTC"
],
"type": "string"
},
"loanTerm": {
"examples": [
"30"
],
"type": "integer"
},
"orderId": {
"examples": [
"12345678"
],
"type": "string"
},
"requestId": {
"examples": [
"12345678"
],
"type": "string"
},
"status": {
"examples": [
"Repaid"
],
"type": "integer"
}
}
}
},
"total": {
"examples": [
1
],
"type": "integer"
}
}
}
Fields§
§rows: Vec<LoanVipRequestDataResponseRowsItem>
§total: i64
Trait Implementations§
Source§impl Clone for LoanVipRequestDataResponse
impl Clone for LoanVipRequestDataResponse
Source§fn clone(&self) -> LoanVipRequestDataResponse
fn clone(&self) -> LoanVipRequestDataResponse
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 LoanVipRequestDataResponse
impl Debug for LoanVipRequestDataResponse
Source§impl<'de> Deserialize<'de> for LoanVipRequestDataResponse
impl<'de> Deserialize<'de> for LoanVipRequestDataResponse
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<&LoanVipRequestDataResponse> for LoanVipRequestDataResponse
impl From<&LoanVipRequestDataResponse> for LoanVipRequestDataResponse
Source§fn from(value: &LoanVipRequestDataResponse) -> Self
fn from(value: &LoanVipRequestDataResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LoanVipRequestDataResponse
impl RefUnwindSafe for LoanVipRequestDataResponse
impl Send for LoanVipRequestDataResponse
impl Sync for LoanVipRequestDataResponse
impl Unpin for LoanVipRequestDataResponse
impl UnwindSafe for LoanVipRequestDataResponse
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