pub struct SubAccountTransferSubUserHistoryResponseItem {
pub asset: String,
pub counter_party: String,
pub email: String,
pub from_account_type: String,
pub qty: String,
pub status: String,
pub time: i64,
pub to_account_type: String,
pub tran_id: i64,
pub type_: i32,
}
Expand description
SubAccountTransferSubUserHistoryResponseItem
JSON schema
{
"type": "object",
"required": [
"asset",
"counterParty",
"email",
"fromAccountType",
"qty",
"status",
"time",
"toAccountType",
"tranId",
"type"
],
"properties": {
"asset": {
"examples": [
"BTC"
],
"type": "string"
},
"counterParty": {
"examples": [
"master"
],
"type": "string"
},
"email": {
"examples": [
"master@test.com"
],
"type": "string"
},
"fromAccountType": {
"examples": [
"SPOT"
],
"type": "string"
},
"qty": {
"examples": [
"1"
],
"type": "string"
},
"status": {
"examples": [
"SUCCESS"
],
"type": "string"
},
"time": {
"examples": [
1544433325000
],
"type": "integer",
"format": "int64"
},
"toAccountType": {
"examples": [
"SPOT"
],
"type": "string"
},
"tranId": {
"examples": [
11798835829
],
"type": "integer",
"format": "int64"
},
"type": {
"description": "1 for transfer in, 2 for transfer out",
"examples": [
1
],
"type": "integer",
"format": "int32"
}
}
}
Fields§
§asset: String
§counter_party: String
§email: String
§from_account_type: String
§qty: String
§status: String
§time: i64
§to_account_type: String
§tran_id: i64
§type_: i32
1 for transfer in, 2 for transfer out
Trait Implementations§
Source§impl Clone for SubAccountTransferSubUserHistoryResponseItem
impl Clone for SubAccountTransferSubUserHistoryResponseItem
Source§fn clone(&self) -> SubAccountTransferSubUserHistoryResponseItem
fn clone(&self) -> SubAccountTransferSubUserHistoryResponseItem
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 SubAccountTransferSubUserHistoryResponseItem
impl<'de> Deserialize<'de> for SubAccountTransferSubUserHistoryResponseItem
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<&SubAccountTransferSubUserHistoryResponseItem> for SubAccountTransferSubUserHistoryResponseItem
impl From<&SubAccountTransferSubUserHistoryResponseItem> for SubAccountTransferSubUserHistoryResponseItem
Source§fn from(value: &SubAccountTransferSubUserHistoryResponseItem) -> Self
fn from(value: &SubAccountTransferSubUserHistoryResponseItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SubAccountTransferSubUserHistoryResponseItem
impl RefUnwindSafe for SubAccountTransferSubUserHistoryResponseItem
impl Send for SubAccountTransferSubUserHistoryResponseItem
impl Sync for SubAccountTransferSubUserHistoryResponseItem
impl Unpin for SubAccountTransferSubUserHistoryResponseItem
impl UnwindSafe for SubAccountTransferSubUserHistoryResponseItem
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