pub struct GetFutureAccountTransactionHistoryResponse {
pub rows: Vec<GetFutureAccountTransactionHistoryResponseRowsItem>,
pub total: i32,
}
Expand description
GetFutureAccountTransactionHistoryResponse
JSON schema
{
"type": "object",
"required": [
"rows",
"total"
],
"properties": {
"rows": {
"type": "array",
"items": {
"type": "object",
"required": [
"amount",
"asset",
"status",
"timestamp",
"tranId",
"type"
],
"properties": {
"amount": {
"examples": [
"40.84624400"
],
"type": "string"
},
"asset": {
"examples": [
"USDT"
],
"type": "string"
},
"status": {
"description": "one of PENDING (pending to execution), CONFIRMED (successfully transfered), FAILED (execution failed, nothing happened to your account);",
"examples": [
"CONFIRMED"
],
"type": "string"
},
"timestamp": {
"examples": [
1555056425000
],
"type": "integer",
"format": "int64"
},
"tranId": {
"examples": [
100000001
],
"type": "integer",
"format": "int64"
},
"type": {
"examples": [
"1"
],
"type": "string"
}
}
}
},
"total": {
"examples": [
1
],
"type": "integer",
"format": "int32"
}
}
}
Fields§
§rows: Vec<GetFutureAccountTransactionHistoryResponseRowsItem>
§total: i32
Trait Implementations§
Source§impl Clone for GetFutureAccountTransactionHistoryResponse
impl Clone for GetFutureAccountTransactionHistoryResponse
Source§fn clone(&self) -> GetFutureAccountTransactionHistoryResponse
fn clone(&self) -> GetFutureAccountTransactionHistoryResponse
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 GetFutureAccountTransactionHistoryResponse
impl<'de> Deserialize<'de> for GetFutureAccountTransactionHistoryResponse
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<&GetFutureAccountTransactionHistoryResponse> for GetFutureAccountTransactionHistoryResponse
impl From<&GetFutureAccountTransactionHistoryResponse> for GetFutureAccountTransactionHistoryResponse
Source§fn from(value: &GetFutureAccountTransactionHistoryResponse) -> Self
fn from(value: &GetFutureAccountTransactionHistoryResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GetFutureAccountTransactionHistoryResponse
impl RefUnwindSafe for GetFutureAccountTransactionHistoryResponse
impl Send for GetFutureAccountTransactionHistoryResponse
impl Sync for GetFutureAccountTransactionHistoryResponse
impl Unpin for GetFutureAccountTransactionHistoryResponse
impl UnwindSafe for GetFutureAccountTransactionHistoryResponse
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