pub struct AssetConvertTransferQueryByPageResponse {
pub rows: Vec<AssetConvertTransferQueryByPageResponseRowsItem>,
pub total: i32,
}
Expand description
AssetConvertTransferQueryByPageResponse
JSON schema
{
"type": "object",
"required": [
"rows",
"total"
],
"properties": {
"rows": {
"type": "array",
"items": {
"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"
}
}
}
},
"total": {
"examples": [
1
],
"type": "integer",
"format": "int32"
}
}
}
Fields§
§rows: Vec<AssetConvertTransferQueryByPageResponseRowsItem>
§total: i32
Trait Implementations§
Source§impl Clone for AssetConvertTransferQueryByPageResponse
impl Clone for AssetConvertTransferQueryByPageResponse
Source§fn clone(&self) -> AssetConvertTransferQueryByPageResponse
fn clone(&self) -> AssetConvertTransferQueryByPageResponse
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 AssetConvertTransferQueryByPageResponse
impl<'de> Deserialize<'de> for AssetConvertTransferQueryByPageResponse
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<&AssetConvertTransferQueryByPageResponse> for AssetConvertTransferQueryByPageResponse
impl From<&AssetConvertTransferQueryByPageResponse> for AssetConvertTransferQueryByPageResponse
Source§fn from(value: &AssetConvertTransferQueryByPageResponse) -> Self
fn from(value: &AssetConvertTransferQueryByPageResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AssetConvertTransferQueryByPageResponse
impl RefUnwindSafe for AssetConvertTransferQueryByPageResponse
impl Send for AssetConvertTransferQueryByPageResponse
impl Sync for AssetConvertTransferQueryByPageResponse
impl Unpin for AssetConvertTransferQueryByPageResponse
impl UnwindSafe for AssetConvertTransferQueryByPageResponse
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