pub struct WalletNetWorthChartResponse {
pub current_timestamp: String,
pub history: Vec<NetWorthHistoryItem>,
pub past_timestamp: String,
pub wallet_address: String,
}Expand description
Wallet net-worth chart response with pagination.
JSON schema
{
"description": "Wallet net-worth chart response with pagination.",
"type": "object",
"required": [
"currentTimestamp",
"history",
"pastTimestamp",
"walletAddress"
],
"properties": {
"currentTimestamp": {
"description": "ENTITY.WALLET_NET_WORTH_CHART_RESPONSE.CURRENT_TIMESTAMP",
"examples": [
"2025-07-31T23:59:59.000Z"
],
"type": "string"
},
"history": {
"description": "ENTITY.WALLET_NET_WORTH_CHART_RESPONSE.HISTORY",
"type": "array",
"items": {
"$ref": "#/components/schemas/NetWorthHistoryItem"
}
},
"pastTimestamp": {
"description": "ENTITY.WALLET_NET_WORTH_CHART_RESPONSE.PAST_TIMESTAMP",
"examples": [
"2025-07-01T23:59:59.000Z"
],
"type": "string"
},
"walletAddress": {
"description": "ENTITY.WALLET_NET_WORTH_CHART_RESPONSE.WALLET_ADDRESS",
"examples": [
"3xd4LGVWtYXLBspR6X5JWbW49NXmEehfPtX6Kqx98b4w"
],
"type": "string"
}
}
}Fields§
§current_timestamp: StringENTITY.WALLET_NET_WORTH_CHART_RESPONSE.CURRENT_TIMESTAMP
history: Vec<NetWorthHistoryItem>ENTITY.WALLET_NET_WORTH_CHART_RESPONSE.HISTORY
past_timestamp: StringENTITY.WALLET_NET_WORTH_CHART_RESPONSE.PAST_TIMESTAMP
wallet_address: StringENTITY.WALLET_NET_WORTH_CHART_RESPONSE.WALLET_ADDRESS
Implementations§
Trait Implementations§
Source§impl Clone for WalletNetWorthChartResponse
impl Clone for WalletNetWorthChartResponse
Source§fn clone(&self) -> WalletNetWorthChartResponse
fn clone(&self) -> WalletNetWorthChartResponse
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 WalletNetWorthChartResponse
impl Debug for WalletNetWorthChartResponse
Source§impl<'de> Deserialize<'de> for WalletNetWorthChartResponse
impl<'de> Deserialize<'de> for WalletNetWorthChartResponse
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<&WalletNetWorthChartResponse> for WalletNetWorthChartResponse
impl From<&WalletNetWorthChartResponse> for WalletNetWorthChartResponse
Source§fn from(value: &WalletNetWorthChartResponse) -> Self
fn from(value: &WalletNetWorthChartResponse) -> Self
Converts to this type from the input type.
Source§impl From<WalletNetWorthChartResponse> for WalletNetWorthChartResponse
impl From<WalletNetWorthChartResponse> for WalletNetWorthChartResponse
Source§fn from(value: WalletNetWorthChartResponse) -> Self
fn from(value: WalletNetWorthChartResponse) -> Self
Converts to this type from the input type.
Source§impl TryFrom<WalletNetWorthChartResponse> for WalletNetWorthChartResponse
impl TryFrom<WalletNetWorthChartResponse> for WalletNetWorthChartResponse
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: WalletNetWorthChartResponse) -> Result<Self, ConversionError>
fn try_from(value: WalletNetWorthChartResponse) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for WalletNetWorthChartResponse
impl RefUnwindSafe for WalletNetWorthChartResponse
impl Send for WalletNetWorthChartResponse
impl Sync for WalletNetWorthChartResponse
impl Unpin for WalletNetWorthChartResponse
impl UnsafeUnpin for WalletNetWorthChartResponse
impl UnwindSafe for WalletNetWorthChartResponse
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