pub struct AssetConvertTransferQueryByPageResponseRowsItem {
pub account_type: String,
pub deducted_amount: String,
pub deducted_asset: String,
pub status: String,
pub target_amount: String,
pub target_asset: String,
pub time: i64,
pub tran_id: i64,
pub type_: i64,
}
Expand description
AssetConvertTransferQueryByPageResponseRowsItem
JSON schema
{
"type": "object",
"required": [
"accountType",
"deductedAmount",
"deductedAsset",
"status",
"targetAmount",
"targetAsset",
"time",
"tranId",
"type"
],
"properties": {
"accountType": {
"examples": [
"MAIN"
],
"type": "string"
},
"deductedAmount": {
"examples": [
"1"
],
"type": "string"
},
"deductedAsset": {
"examples": [
"BUSD"
],
"type": "string"
},
"status": {
"examples": [
"S"
],
"type": "string"
},
"targetAmount": {
"examples": [
"1"
],
"type": "string"
},
"targetAsset": {
"examples": [
"USDC"
],
"type": "string"
},
"time": {
"examples": [
1664442078000
],
"type": "integer",
"format": "int64"
},
"tranId": {
"examples": [
118263407119
],
"type": "integer",
"format": "int64"
},
"type": {
"examples": [
244
],
"type": "integer",
"format": "int64"
}
}
}
Fields§
§account_type: String
§deducted_amount: String
§deducted_asset: String
§status: String
§target_amount: String
§target_asset: String
§time: i64
§tran_id: i64
§type_: i64
Trait Implementations§
Source§impl Clone for AssetConvertTransferQueryByPageResponseRowsItem
impl Clone for AssetConvertTransferQueryByPageResponseRowsItem
Source§fn clone(&self) -> AssetConvertTransferQueryByPageResponseRowsItem
fn clone(&self) -> AssetConvertTransferQueryByPageResponseRowsItem
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 AssetConvertTransferQueryByPageResponseRowsItem
impl<'de> Deserialize<'de> for AssetConvertTransferQueryByPageResponseRowsItem
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<&AssetConvertTransferQueryByPageResponseRowsItem> for AssetConvertTransferQueryByPageResponseRowsItem
impl From<&AssetConvertTransferQueryByPageResponseRowsItem> for AssetConvertTransferQueryByPageResponseRowsItem
Source§fn from(value: &AssetConvertTransferQueryByPageResponseRowsItem) -> Self
fn from(value: &AssetConvertTransferQueryByPageResponseRowsItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AssetConvertTransferQueryByPageResponseRowsItem
impl RefUnwindSafe for AssetConvertTransferQueryByPageResponseRowsItem
impl Send for AssetConvertTransferQueryByPageResponseRowsItem
impl Sync for AssetConvertTransferQueryByPageResponseRowsItem
impl Unpin for AssetConvertTransferQueryByPageResponseRowsItem
impl UnwindSafe for AssetConvertTransferQueryByPageResponseRowsItem
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