pub enum UpdateAccountInput {
WalletsConfigurationInput(UpdateAccountFromWalletsConfigurationInput),
WalletIdsInput(UpdateAccountFromWalletIdsInput),
}Expand description
Input for updating a digital asset account.
JSON schema
{
"title": "UpdateAccountInput",
"description": "Input for updating a digital asset account.",
"oneOf": [
{
"$ref":
"#/components/schemas/UpdateAccountFromWalletsConfigurationInput"
},
{
"$ref": "#/components/schemas/UpdateAccountFromWalletIdsInput"
}
],
"x-stainless-model": "accounts.update_account_input"
}Variants§
WalletsConfigurationInput(UpdateAccountFromWalletsConfigurationInput)
WalletIdsInput(UpdateAccountFromWalletIdsInput)
Trait Implementations§
Source§impl Clone for UpdateAccountInput
impl Clone for UpdateAccountInput
Source§fn clone(&self) -> UpdateAccountInput
fn clone(&self) -> UpdateAccountInput
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 UpdateAccountInput
impl Debug for UpdateAccountInput
Source§impl<'de> Deserialize<'de> for UpdateAccountInput
impl<'de> Deserialize<'de> for UpdateAccountInput
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<&UpdateAccountInput> for UpdateAccountInput
impl From<&UpdateAccountInput> for UpdateAccountInput
Source§fn from(value: &UpdateAccountInput) -> Self
fn from(value: &UpdateAccountInput) -> Self
Converts to this type from the input type.
Source§impl From<UpdateAccountFromWalletIdsInput> for UpdateAccountInput
impl From<UpdateAccountFromWalletIdsInput> for UpdateAccountInput
Source§fn from(value: UpdateAccountFromWalletIdsInput) -> Self
fn from(value: UpdateAccountFromWalletIdsInput) -> 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 UpdateAccountInput
impl RefUnwindSafe for UpdateAccountInput
impl Send for UpdateAccountInput
impl Sync for UpdateAccountInput
impl Unpin for UpdateAccountInput
impl UnsafeUnpin for UpdateAccountInput
impl UnwindSafe for UpdateAccountInput
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