pub struct WalletNetWorthSummaryResponse {
pub current_timestamp: String,
pub wallets: HashMap<String, NetWorthSummaryValue>,
}Expand description
WalletNetWorthSummaryResponse
JSON schema
{
"type": "object",
"required": [
"currentTimestamp",
"wallets"
],
"properties": {
"currentTimestamp": {
"description": "ENTITY.WALLET_NET_WORTH_SUMMARY_RESPONSE.CURRENT_TIMESTAMP",
"examples": [
"2025-10-30T03:33:40.980Z"
],
"type": "string"
},
"wallets": {
"description": "ENTITY.WALLET_NET_WORTH_SUMMARY_RESPONSE.WALLETS",
"examples": [
{
"3bovD5jCRn7eG64jZqyEz6Zbx92mHixZSTRrWLy1Sirx": {
"value": "1764819473.530063"
}
}
],
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/NetWorthSummaryValue"
}
}
}
}Fields§
§current_timestamp: StringENTITY.WALLET_NET_WORTH_SUMMARY_RESPONSE.CURRENT_TIMESTAMP
wallets: HashMap<String, NetWorthSummaryValue>ENTITY.WALLET_NET_WORTH_SUMMARY_RESPONSE.WALLETS
Implementations§
Trait Implementations§
Source§impl Clone for WalletNetWorthSummaryResponse
impl Clone for WalletNetWorthSummaryResponse
Source§fn clone(&self) -> WalletNetWorthSummaryResponse
fn clone(&self) -> WalletNetWorthSummaryResponse
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 WalletNetWorthSummaryResponse
impl<'de> Deserialize<'de> for WalletNetWorthSummaryResponse
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<&WalletNetWorthSummaryResponse> for WalletNetWorthSummaryResponse
impl From<&WalletNetWorthSummaryResponse> for WalletNetWorthSummaryResponse
Source§fn from(value: &WalletNetWorthSummaryResponse) -> Self
fn from(value: &WalletNetWorthSummaryResponse) -> Self
Converts to this type from the input type.
Source§impl From<WalletNetWorthSummaryResponse> for WalletNetWorthSummaryResponse
impl From<WalletNetWorthSummaryResponse> for WalletNetWorthSummaryResponse
Source§fn from(value: WalletNetWorthSummaryResponse) -> Self
fn from(value: WalletNetWorthSummaryResponse) -> Self
Converts to this type from the input type.
Source§impl TryFrom<WalletNetWorthSummaryResponse> for WalletNetWorthSummaryResponse
impl TryFrom<WalletNetWorthSummaryResponse> for WalletNetWorthSummaryResponse
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: WalletNetWorthSummaryResponse,
) -> Result<Self, ConversionError>
fn try_from( value: WalletNetWorthSummaryResponse, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for WalletNetWorthSummaryResponse
impl RefUnwindSafe for WalletNetWorthSummaryResponse
impl Send for WalletNetWorthSummaryResponse
impl Sync for WalletNetWorthSummaryResponse
impl Unpin for WalletNetWorthSummaryResponse
impl UnsafeUnpin for WalletNetWorthSummaryResponse
impl UnwindSafe for WalletNetWorthSummaryResponse
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