pub struct ManagedSubaccountQueryTransLogForTradeParentResponse {
pub count: i32,
pub manager_sub_transfer_history_vos: Vec<ManagedSubaccountQueryTransLogForTradeParentResponseManagerSubTransferHistoryVosItem>,
}
Expand description
ManagedSubaccountQueryTransLogForTradeParentResponse
JSON schema
{
"type": "object",
"required": [
"count",
"managerSubTransferHistoryVos"
],
"properties": {
"count": {
"examples": [
2
],
"type": "integer",
"format": "int32"
},
"managerSubTransferHistoryVos": {
"type": "array",
"items": {
"type": "object",
"required": [
"amount",
"asset",
"createTime",
"fromAccountType",
"fromEmail",
"scheduledData",
"status",
"toAccountType",
"toEmail",
"tranId"
],
"properties": {
"amount": {
"examples": [
"0.01"
],
"type": "string"
},
"asset": {
"examples": [
"BNB"
],
"type": "string"
},
"createTime": {
"examples": [
1626144956000
],
"type": "integer",
"format": "int64"
},
"fromAccountType": {
"examples": [
"SPOT"
],
"type": "string"
},
"fromEmail": {
"examples": [
"test_0_virtual@kq3kno9imanagedsub.com"
],
"type": "string"
},
"scheduledData": {
"examples": [
1626144956000
],
"type": "integer",
"format": "int64"
},
"status": {
"examples": [
"SUCCESS"
],
"type": "string"
},
"toAccountType": {
"examples": [
"SPOT"
],
"type": "string"
},
"toEmail": {
"examples": [
"wdywl0lddakh@test.com"
],
"type": "string"
},
"tranId": {
"examples": [
91077779
],
"type": "integer"
}
}
}
}
}
}
Fields§
§count: i32
§manager_sub_transfer_history_vos: Vec<ManagedSubaccountQueryTransLogForTradeParentResponseManagerSubTransferHistoryVosItem>
Trait Implementations§
Source§impl Clone for ManagedSubaccountQueryTransLogForTradeParentResponse
impl Clone for ManagedSubaccountQueryTransLogForTradeParentResponse
Source§fn clone(&self) -> ManagedSubaccountQueryTransLogForTradeParentResponse
fn clone(&self) -> ManagedSubaccountQueryTransLogForTradeParentResponse
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 ManagedSubaccountQueryTransLogForTradeParentResponse
impl<'de> Deserialize<'de> for ManagedSubaccountQueryTransLogForTradeParentResponse
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<&ManagedSubaccountQueryTransLogForTradeParentResponse> for ManagedSubaccountQueryTransLogForTradeParentResponse
impl From<&ManagedSubaccountQueryTransLogForTradeParentResponse> for ManagedSubaccountQueryTransLogForTradeParentResponse
Source§fn from(value: &ManagedSubaccountQueryTransLogForTradeParentResponse) -> Self
fn from(value: &ManagedSubaccountQueryTransLogForTradeParentResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ManagedSubaccountQueryTransLogForTradeParentResponse
impl RefUnwindSafe for ManagedSubaccountQueryTransLogForTradeParentResponse
impl Send for ManagedSubaccountQueryTransLogForTradeParentResponse
impl Sync for ManagedSubaccountQueryTransLogForTradeParentResponse
impl Unpin for ManagedSubaccountQueryTransLogForTradeParentResponse
impl UnwindSafe for ManagedSubaccountQueryTransLogForTradeParentResponse
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