pub struct SmartWalletConfigurationInputEnabled {
pub configured_networks: Vec<SmartWalletNetworkConfigurationInput>,
pub enabled: bool,
pub smart_wallet_type: SmartWalletType,
pub smart_wallet_version: Option<String>,
}Expand description
An enabled smart wallet configuration input.
JSON schema
{
"title": "SmartWalletConfigurationInputEnabled",
"description": "An enabled smart wallet configuration input.",
"type": "object",
"required": [
"configured_networks",
"enabled",
"smart_wallet_type"
],
"properties": {
"configured_networks": {
"type": "array",
"items": {
"$ref":
"#/components/schemas/SmartWalletNetworkConfigurationInput"
},
"minItems": 1
},
"enabled": {
"type": "boolean",
"enum": [
true
]
},
"smart_wallet_type": {
"$ref": "#/components/schemas/SmartWalletType"
},
"smart_wallet_version": {
"type": "string"
}
},
"x-stainless-model":
"embedded_wallets.smart_wallet_configuration_input_enabled"
}Fields§
§configured_networks: Vec<SmartWalletNetworkConfigurationInput>§enabled: bool§smart_wallet_type: SmartWalletType§smart_wallet_version: Option<String>Trait Implementations§
Source§impl Clone for SmartWalletConfigurationInputEnabled
impl Clone for SmartWalletConfigurationInputEnabled
Source§fn clone(&self) -> SmartWalletConfigurationInputEnabled
fn clone(&self) -> SmartWalletConfigurationInputEnabled
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 SmartWalletConfigurationInputEnabled
impl<'de> Deserialize<'de> for SmartWalletConfigurationInputEnabled
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<&SmartWalletConfigurationInputEnabled> for SmartWalletConfigurationInputEnabled
impl From<&SmartWalletConfigurationInputEnabled> for SmartWalletConfigurationInputEnabled
Source§fn from(value: &SmartWalletConfigurationInputEnabled) -> Self
fn from(value: &SmartWalletConfigurationInputEnabled) -> Self
Converts to this type from the input type.
Source§impl From<SmartWalletConfigurationInputEnabled> for SmartWalletConfigurationInput
impl From<SmartWalletConfigurationInputEnabled> for SmartWalletConfigurationInput
Source§fn from(value: SmartWalletConfigurationInputEnabled) -> Self
fn from(value: SmartWalletConfigurationInputEnabled) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SmartWalletConfigurationInputEnabled
impl RefUnwindSafe for SmartWalletConfigurationInputEnabled
impl Send for SmartWalletConfigurationInputEnabled
impl Sync for SmartWalletConfigurationInputEnabled
impl Unpin for SmartWalletConfigurationInputEnabled
impl UnsafeUnpin for SmartWalletConfigurationInputEnabled
impl UnwindSafe for SmartWalletConfigurationInputEnabled
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