pub struct UpdateAccountFromWalletsConfigurationInput {
pub display_name: Option<AccountDisplayName>,
pub wallets_configuration: Option<AccountWalletsConfiguration>,
}Expand description
Input for updating a digital asset account with a
wallets_configuration specification.
JSON schema
{
"title": "UpdateAccountFromWalletsConfigurationInput",
"description": "Input for updating a digital asset account with a
`wallets_configuration` specification.",
"type": "object",
"properties": {
"display_name": {
"$ref": "#/components/schemas/AccountDisplayName"
},
"wallets_configuration": {
"$ref": "#/components/schemas/AccountWalletsConfiguration"
}
},
"x-stainless-model":
"accounts.update_account_from_wallets_configuration_input"
}Fields§
§display_name: Option<AccountDisplayName>§wallets_configuration: Option<AccountWalletsConfiguration>Trait Implementations§
Source§impl Clone for UpdateAccountFromWalletsConfigurationInput
impl Clone for UpdateAccountFromWalletsConfigurationInput
Source§fn clone(&self) -> UpdateAccountFromWalletsConfigurationInput
fn clone(&self) -> UpdateAccountFromWalletsConfigurationInput
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 UpdateAccountFromWalletsConfigurationInput
impl<'de> Deserialize<'de> for UpdateAccountFromWalletsConfigurationInput
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<&UpdateAccountFromWalletsConfigurationInput> for UpdateAccountFromWalletsConfigurationInput
impl From<&UpdateAccountFromWalletsConfigurationInput> for UpdateAccountFromWalletsConfigurationInput
Source§fn from(value: &UpdateAccountFromWalletsConfigurationInput) -> Self
fn from(value: &UpdateAccountFromWalletsConfigurationInput) -> Self
Converts to this type from the input type.
Source§impl From<UpdateAccountFromWalletsConfigurationInput> for UpdateAccountInput
impl From<UpdateAccountFromWalletsConfigurationInput> for UpdateAccountInput
Source§fn from(value: UpdateAccountFromWalletsConfigurationInput) -> Self
fn from(value: UpdateAccountFromWalletsConfigurationInput) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for UpdateAccountFromWalletsConfigurationInput
impl RefUnwindSafe for UpdateAccountFromWalletsConfigurationInput
impl Send for UpdateAccountFromWalletsConfigurationInput
impl Sync for UpdateAccountFromWalletsConfigurationInput
impl Unpin for UpdateAccountFromWalletsConfigurationInput
impl UnsafeUnpin for UpdateAccountFromWalletsConfigurationInput
impl UnwindSafe for UpdateAccountFromWalletsConfigurationInput
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