pub struct CreateEndUserWalletRequest {
pub idempotency_key: String,
pub blockchains: Vec<Blockchain>,
pub account_type: Option<AccountType>,
pub metadata: Option<Vec<WalletMetadata>>,
}Expand description
Request body for createEndUserWallet.
Fields§
§idempotency_key: StringClient-generated idempotency key (UUID).
blockchains: Vec<Blockchain>Blockchains on which to create wallets.
account_type: Option<AccountType>Account type for the new wallet.
metadata: Option<Vec<WalletMetadata>>Optional per-wallet metadata.
Trait Implementations§
Source§impl Clone for CreateEndUserWalletRequest
impl Clone for CreateEndUserWalletRequest
Source§fn clone(&self) -> CreateEndUserWalletRequest
fn clone(&self) -> CreateEndUserWalletRequest
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 Debug for CreateEndUserWalletRequest
impl Debug for CreateEndUserWalletRequest
Source§impl<'de> Deserialize<'de> for CreateEndUserWalletRequest
impl<'de> Deserialize<'de> for CreateEndUserWalletRequest
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
Auto Trait Implementations§
impl Freeze for CreateEndUserWalletRequest
impl RefUnwindSafe for CreateEndUserWalletRequest
impl Send for CreateEndUserWalletRequest
impl Sync for CreateEndUserWalletRequest
impl Unpin for CreateEndUserWalletRequest
impl UnsafeUnpin for CreateEndUserWalletRequest
impl UnwindSafe for CreateEndUserWalletRequest
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