pub struct EmbeddedWalletConfigSchema {
pub create_on_login: EmbeddedWalletCreateOnLogin,
pub ethereum: EmbeddedWalletChainConfig,
pub mode: EmbeddedWalletMode,
pub require_user_owned_recovery_on_create: Option<bool>,
pub require_user_password_on_create: Option<bool>,
pub solana: EmbeddedWalletChainConfig,
pub user_owned_recovery_options: Vec<UserOwnedRecoveryOption>,
}Expand description
Configuration for embedded wallets including the mode.
JSON schema
{
"title": "EmbeddedWalletConfigSchema",
"description": "Configuration for embedded wallets including the
mode.",
"allOf": [
{
"$ref": "#/components/schemas/EmbeddedWalletInputSchema"
},
{
"type": "object",
"required": [
"mode"
],
"properties": {
"mode": {
"$ref": "#/components/schemas/EmbeddedWalletMode"
}
}
}
],
"x-stainless-model": "apps.embedded_wallet_config_schema"
}Fields§
§create_on_login: EmbeddedWalletCreateOnLogin§ethereum: EmbeddedWalletChainConfig§mode: EmbeddedWalletMode§require_user_owned_recovery_on_create: Option<bool>§require_user_password_on_create: Option<bool>§solana: EmbeddedWalletChainConfig§user_owned_recovery_options: Vec<UserOwnedRecoveryOption>Trait Implementations§
Source§impl Clone for EmbeddedWalletConfigSchema
impl Clone for EmbeddedWalletConfigSchema
Source§fn clone(&self) -> EmbeddedWalletConfigSchema
fn clone(&self) -> EmbeddedWalletConfigSchema
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 Debug for EmbeddedWalletConfigSchema
impl Debug for EmbeddedWalletConfigSchema
Source§impl<'de> Deserialize<'de> for EmbeddedWalletConfigSchema
impl<'de> Deserialize<'de> for EmbeddedWalletConfigSchema
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<&EmbeddedWalletConfigSchema> for EmbeddedWalletConfigSchema
impl From<&EmbeddedWalletConfigSchema> for EmbeddedWalletConfigSchema
Source§fn from(value: &EmbeddedWalletConfigSchema) -> Self
fn from(value: &EmbeddedWalletConfigSchema) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for EmbeddedWalletConfigSchema
impl RefUnwindSafe for EmbeddedWalletConfigSchema
impl Send for EmbeddedWalletConfigSchema
impl Sync for EmbeddedWalletConfigSchema
impl Unpin for EmbeddedWalletConfigSchema
impl UnsafeUnpin for EmbeddedWalletConfigSchema
impl UnwindSafe for EmbeddedWalletConfigSchema
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