pub struct TransferSentTransactionDetail {
pub asset: TransferSentTransactionDetailAsset,
pub chain: TransferSentTransactionDetailChain,
pub display_values: HashMap<String, String>,
pub raw_value: String,
pub raw_value_decimals: f64,
pub recipient: String,
pub recipient_privy_user_id: Option<String>,
pub sender: String,
pub sender_privy_user_id: Option<String>,
pub type_: TransferSentTransactionDetailType,
}Expand description
Details for a sent transfer transaction.
JSON schema
{
"title": "TransferSentTransactionDetail",
"description": "Details for a sent transfer transaction.",
"type": "object",
"required": [
"asset",
"chain",
"display_values",
"raw_value",
"raw_value_decimals",
"recipient",
"sender",
"type"
],
"properties": {
"asset": {
"oneOf": [
{
"$ref": "#/components/schemas/WalletEthereumAsset"
},
{
"$ref": "#/components/schemas/WalletSolanaAsset"
},
{
"type": "string"
}
]
},
"chain": {
"type": "string",
"enum": [
"arbitrum",
"arbitrum_sepolia",
"avalanche",
"avalanche_fuji",
"base",
"base_sepolia",
"ethereum",
"linea",
"linea_testnet",
"optimism",
"optimism_sepolia",
"polygon",
"polygon_amoy",
"sepolia",
"solana",
"solana_devnet",
"solana_testnet",
"tempo",
"zksync_era"
]
},
"display_values": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"raw_value": {
"type": "string"
},
"raw_value_decimals": {
"type": "number"
},
"recipient": {
"type": "string"
},
"recipient_privy_user_id": {
"type": "string"
},
"sender": {
"type": "string"
},
"sender_privy_user_id": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"transfer_sent"
]
}
},
"x-stainless-model": "wallets.transfer_sent_transaction_detail"
}Fields§
§asset: TransferSentTransactionDetailAsset§chain: TransferSentTransactionDetailChain§display_values: HashMap<String, String>§raw_value: String§raw_value_decimals: f64§recipient: String§recipient_privy_user_id: Option<String>§sender: String§sender_privy_user_id: Option<String>§type_: TransferSentTransactionDetailTypeTrait Implementations§
Source§impl Clone for TransferSentTransactionDetail
impl Clone for TransferSentTransactionDetail
Source§fn clone(&self) -> TransferSentTransactionDetail
fn clone(&self) -> TransferSentTransactionDetail
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TransferSentTransactionDetail
impl<'de> Deserialize<'de> for TransferSentTransactionDetail
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<&TransferSentTransactionDetail> for TransferSentTransactionDetail
impl From<&TransferSentTransactionDetail> for TransferSentTransactionDetail
Source§fn from(value: &TransferSentTransactionDetail) -> Self
fn from(value: &TransferSentTransactionDetail) -> Self
Converts to this type from the input type.
Source§impl From<TransferSentTransactionDetail> for TransactionDetail
impl From<TransferSentTransactionDetail> for TransactionDetail
Source§fn from(value: TransferSentTransactionDetail) -> Self
fn from(value: TransferSentTransactionDetail) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TransferSentTransactionDetail
impl RefUnwindSafe for TransferSentTransactionDetail
impl Send for TransferSentTransactionDetail
impl Sync for TransferSentTransactionDetail
impl Unpin for TransferSentTransactionDetail
impl UnsafeUnpin for TransferSentTransactionDetail
impl UnwindSafe for TransferSentTransactionDetail
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