pub struct NftHistoryWithdrawResponse {
pub list: Vec<NftHistoryWithdrawResponseListItem>,
pub total: i32,
}
Expand description
NftHistoryWithdrawResponse
JSON schema
{
"type": "object",
"required": [
"list",
"total"
],
"properties": {
"list": {
"type": "array",
"items": {
"type": "object",
"required": [
"contractAdrress",
"fee",
"feeAsset",
"network",
"timestamp",
"tokenId",
"txID"
],
"properties": {
"contractAdrress": {
"examples": [
"0xe507c961ee127d4439977a61af39c34eafee0dc6"
],
"type": "string"
},
"fee": {
"examples": [
0.1
],
"type": "number"
},
"feeAsset": {
"examples": [
"ETH"
],
"type": "string"
},
"network": {
"examples": [
"ETH"
],
"type": "string"
},
"timestamp": {
"examples": [
1633674433000
],
"type": "integer",
"format": "int64"
},
"tokenId": {
"examples": [
"1000001247"
],
"type": "string"
},
"txID": {
"examples": [
"0x2be5eed31d787fdb4880bc631c8e76bdfb6150e137f5cf1732e0416ea206f57f"
],
"type": "string"
}
}
}
},
"total": {
"examples": [
178
],
"type": "integer",
"format": "int32"
}
}
}
Fields§
§list: Vec<NftHistoryWithdrawResponseListItem>
§total: i32
Trait Implementations§
Source§impl Clone for NftHistoryWithdrawResponse
impl Clone for NftHistoryWithdrawResponse
Source§fn clone(&self) -> NftHistoryWithdrawResponse
fn clone(&self) -> NftHistoryWithdrawResponse
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 Debug for NftHistoryWithdrawResponse
impl Debug for NftHistoryWithdrawResponse
Source§impl<'de> Deserialize<'de> for NftHistoryWithdrawResponse
impl<'de> Deserialize<'de> for NftHistoryWithdrawResponse
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<&NftHistoryWithdrawResponse> for NftHistoryWithdrawResponse
impl From<&NftHistoryWithdrawResponse> for NftHistoryWithdrawResponse
Source§fn from(value: &NftHistoryWithdrawResponse) -> Self
fn from(value: &NftHistoryWithdrawResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for NftHistoryWithdrawResponse
impl RefUnwindSafe for NftHistoryWithdrawResponse
impl Send for NftHistoryWithdrawResponse
impl Sync for NftHistoryWithdrawResponse
impl Unpin for NftHistoryWithdrawResponse
impl UnwindSafe for NftHistoryWithdrawResponse
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