pub struct SubAccountUniversalTransferResponseItem {
pub amount: String,
pub asset: String,
pub client_tran_id: String,
pub create_time_stamp: i64,
pub from_account_type: String,
pub from_email: String,
pub status: String,
pub to_account_type: String,
pub to_email: String,
pub tran_id: i64,
}
Expand description
SubAccountUniversalTransferResponseItem
JSON schema
{
"type": "object",
"required": [
"amount",
"asset",
"clientTranId",
"createTimeStamp",
"fromAccountType",
"fromEmail",
"status",
"toAccountType",
"toEmail",
"tranId"
],
"properties": {
"amount": {
"examples": [
"0.1"
],
"type": "string"
},
"asset": {
"examples": [
"BTC"
],
"type": "string"
},
"clientTranId": {
"examples": [
"11945860694"
],
"type": "string"
},
"createTimeStamp": {
"examples": [
1544433325000
],
"type": "integer",
"format": "int64"
},
"fromAccountType": {
"examples": [
"SPOT"
],
"type": "string"
},
"fromEmail": {
"examples": [
"master@test.com"
],
"type": "string"
},
"status": {
"examples": [
"SUCCESS"
],
"type": "string"
},
"toAccountType": {
"examples": [
"COIN_FUTURE"
],
"type": "string"
},
"toEmail": {
"examples": [
"subaccount1@test.com"
],
"type": "string"
},
"tranId": {
"examples": [
11945860693
],
"type": "integer",
"format": "int64"
}
}
}
Fields§
§amount: String
§asset: String
§client_tran_id: String
§create_time_stamp: i64
§from_account_type: String
§from_email: String
§status: String
§to_account_type: String
§to_email: String
§tran_id: i64
Trait Implementations§
Source§impl Clone for SubAccountUniversalTransferResponseItem
impl Clone for SubAccountUniversalTransferResponseItem
Source§fn clone(&self) -> SubAccountUniversalTransferResponseItem
fn clone(&self) -> SubAccountUniversalTransferResponseItem
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 SubAccountUniversalTransferResponseItem
impl<'de> Deserialize<'de> for SubAccountUniversalTransferResponseItem
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<&SubAccountUniversalTransferResponseItem> for SubAccountUniversalTransferResponseItem
impl From<&SubAccountUniversalTransferResponseItem> for SubAccountUniversalTransferResponseItem
Source§fn from(value: &SubAccountUniversalTransferResponseItem) -> Self
fn from(value: &SubAccountUniversalTransferResponseItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SubAccountUniversalTransferResponseItem
impl RefUnwindSafe for SubAccountUniversalTransferResponseItem
impl Send for SubAccountUniversalTransferResponseItem
impl Sync for SubAccountUniversalTransferResponseItem
impl Unpin for SubAccountUniversalTransferResponseItem
impl UnwindSafe for SubAccountUniversalTransferResponseItem
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