pub struct LinkedAccountSmartWallet {
pub address: String,
pub first_verified_at: Option<f64>,
pub latest_verified_at: Option<f64>,
pub smart_wallet_type: SmartWalletType,
pub smart_wallet_version: Option<String>,
pub type_: LinkedAccountSmartWalletType,
pub verified_at: f64,
}Expand description
LinkedAccountSmartWallet
JSON schema
{
"title": "LinkedAccountSmartWallet",
"type": "object",
"required": [
"address",
"first_verified_at",
"latest_verified_at",
"smart_wallet_type",
"type",
"verified_at"
],
"properties": {
"address": {
"type": "string"
},
"first_verified_at": {
"type": [
"number",
"null"
]
},
"latest_verified_at": {
"type": [
"number",
"null"
]
},
"smart_wallet_type": {
"$ref": "#/components/schemas/SmartWalletType"
},
"smart_wallet_version": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"smart_wallet"
]
},
"verified_at": {
"type": "number"
}
},
"x-stainless-model": "users.linked_account_smart_wallet"
}Fields§
§address: String§first_verified_at: Option<f64>§latest_verified_at: Option<f64>§smart_wallet_type: SmartWalletType§smart_wallet_version: Option<String>§type_: LinkedAccountSmartWalletType§verified_at: f64Trait Implementations§
Source§impl Clone for LinkedAccountSmartWallet
impl Clone for LinkedAccountSmartWallet
Source§fn clone(&self) -> LinkedAccountSmartWallet
fn clone(&self) -> LinkedAccountSmartWallet
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 LinkedAccountSmartWallet
impl Debug for LinkedAccountSmartWallet
Source§impl<'de> Deserialize<'de> for LinkedAccountSmartWallet
impl<'de> Deserialize<'de> for LinkedAccountSmartWallet
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<&LinkedAccountSmartWallet> for LinkedAccountSmartWallet
impl From<&LinkedAccountSmartWallet> for LinkedAccountSmartWallet
Source§fn from(value: &LinkedAccountSmartWallet) -> Self
fn from(value: &LinkedAccountSmartWallet) -> Self
Converts to this type from the input type.
Source§impl From<LinkedAccountSmartWallet> for LinkedAccount
impl From<LinkedAccountSmartWallet> for LinkedAccount
Source§fn from(value: LinkedAccountSmartWallet) -> Self
fn from(value: LinkedAccountSmartWallet) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LinkedAccountSmartWallet
impl RefUnwindSafe for LinkedAccountSmartWallet
impl Send for LinkedAccountSmartWallet
impl Sync for LinkedAccountSmartWallet
impl Unpin for LinkedAccountSmartWallet
impl UnwindSafe for LinkedAccountSmartWallet
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