pub struct LinkedAccountBitcoinSegwitEmbeddedWallet {Show 16 fields
pub address: String,
pub chain_id: String,
pub chain_type: LinkedAccountBitcoinSegwitEmbeddedWalletChainType,
pub connector_type: LinkedAccountBitcoinSegwitEmbeddedWalletConnectorType,
pub delegated: bool,
pub first_verified_at: Option<f64>,
pub id: Option<String>,
pub imported: bool,
pub latest_verified_at: Option<f64>,
pub public_key: String,
pub recovery_method: LinkedAccountBitcoinSegwitEmbeddedWalletRecoveryMethod,
pub type_: LinkedAccountBitcoinSegwitEmbeddedWalletType,
pub verified_at: f64,
pub wallet_client: LinkedAccountBitcoinSegwitEmbeddedWalletWalletClient,
pub wallet_client_type: LinkedAccountBitcoinSegwitEmbeddedWalletWalletClientType,
pub wallet_index: f64,
}Expand description
LinkedAccountBitcoinSegwitEmbeddedWallet
JSON schema
{
"title": "LinkedAccountBitcoinSegwitEmbeddedWallet",
"type": "object",
"required": [
"address",
"chain_id",
"chain_type",
"connector_type",
"delegated",
"first_verified_at",
"id",
"imported",
"latest_verified_at",
"public_key",
"recovery_method",
"type",
"verified_at",
"wallet_client",
"wallet_client_type",
"wallet_index"
],
"properties": {
"address": {
"type": "string"
},
"chain_id": {
"type": "string"
},
"chain_type": {
"type": "string",
"enum": [
"bitcoin-segwit"
]
},
"connector_type": {
"type": "string",
"enum": [
"embedded"
]
},
"delegated": {
"default": false,
"type": "boolean"
},
"first_verified_at": {
"type": [
"number",
"null"
]
},
"id": {
"type": [
"string",
"null"
]
},
"imported": {
"default": false,
"type": "boolean"
},
"latest_verified_at": {
"type": [
"number",
"null"
]
},
"public_key": {
"type": "string"
},
"recovery_method": {
"type": "string",
"enum": [
"google-drive",
"icloud",
"privy",
"privy-v2",
"recovery-encryption-key",
"user-passcode"
]
},
"type": {
"type": "string",
"enum": [
"wallet"
]
},
"verified_at": {
"type": "number"
},
"wallet_client": {
"type": "string",
"enum": [
"privy"
]
},
"wallet_client_type": {
"type": "string",
"enum": [
"privy"
]
},
"wallet_index": {
"type": "number"
}
},
"x-stainless-model":
"users.linked_account_bitcoin_segwit_embedded_wallet"
}Fields§
§address: String§chain_id: String§chain_type: LinkedAccountBitcoinSegwitEmbeddedWalletChainType§connector_type: LinkedAccountBitcoinSegwitEmbeddedWalletConnectorType§delegated: bool§first_verified_at: Option<f64>§id: Option<String>§imported: bool§latest_verified_at: Option<f64>§public_key: String§recovery_method: LinkedAccountBitcoinSegwitEmbeddedWalletRecoveryMethod§type_: LinkedAccountBitcoinSegwitEmbeddedWalletType§verified_at: f64§wallet_client: LinkedAccountBitcoinSegwitEmbeddedWalletWalletClient§wallet_client_type: LinkedAccountBitcoinSegwitEmbeddedWalletWalletClientType§wallet_index: f64Trait Implementations§
Source§impl Clone for LinkedAccountBitcoinSegwitEmbeddedWallet
impl Clone for LinkedAccountBitcoinSegwitEmbeddedWallet
Source§fn clone(&self) -> LinkedAccountBitcoinSegwitEmbeddedWallet
fn clone(&self) -> LinkedAccountBitcoinSegwitEmbeddedWallet
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 LinkedAccountBitcoinSegwitEmbeddedWallet
impl<'de> Deserialize<'de> for LinkedAccountBitcoinSegwitEmbeddedWallet
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<&LinkedAccountBitcoinSegwitEmbeddedWallet> for LinkedAccountBitcoinSegwitEmbeddedWallet
impl From<&LinkedAccountBitcoinSegwitEmbeddedWallet> for LinkedAccountBitcoinSegwitEmbeddedWallet
Source§fn from(value: &LinkedAccountBitcoinSegwitEmbeddedWallet) -> Self
fn from(value: &LinkedAccountBitcoinSegwitEmbeddedWallet) -> Self
Converts to this type from the input type.
Source§impl From<LinkedAccountBitcoinSegwitEmbeddedWallet> for LinkedAccount
impl From<LinkedAccountBitcoinSegwitEmbeddedWallet> for LinkedAccount
Source§fn from(value: LinkedAccountBitcoinSegwitEmbeddedWallet) -> Self
fn from(value: LinkedAccountBitcoinSegwitEmbeddedWallet) -> Self
Converts to this type from the input type.
Source§impl From<LinkedAccountBitcoinSegwitEmbeddedWallet> for LinkedAccountEmbeddedWallet
impl From<LinkedAccountBitcoinSegwitEmbeddedWallet> for LinkedAccountEmbeddedWallet
Source§fn from(value: LinkedAccountBitcoinSegwitEmbeddedWallet) -> Self
fn from(value: LinkedAccountBitcoinSegwitEmbeddedWallet) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LinkedAccountBitcoinSegwitEmbeddedWallet
impl RefUnwindSafe for LinkedAccountBitcoinSegwitEmbeddedWallet
impl Send for LinkedAccountBitcoinSegwitEmbeddedWallet
impl Sync for LinkedAccountBitcoinSegwitEmbeddedWallet
impl Unpin for LinkedAccountBitcoinSegwitEmbeddedWallet
impl UnwindSafe for LinkedAccountBitcoinSegwitEmbeddedWallet
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