pub struct WalletCreateWalletsWithRecoveryResponse {
pub recovery_user_id: String,
pub wallets: Vec<Wallet>,
}Expand description
The response from creating wallets with an associated recovery user.
JSON schema
{
"title": "WalletCreateWalletsWithRecoveryResponse",
"description": "The response from creating wallets with an associated
recovery user.",
"type": "object",
"required": [
"recovery_user_id",
"wallets"
],
"properties": {
"recovery_user_id": {
"description": "The ID of the created user.",
"type": "string"
},
"wallets": {
"description": "The wallets that were created.",
"type": "array",
"items": {
"$ref": "#/components/schemas/Wallet"
}
}
},
"x-stainless-model":
"wallets.wallet_create_wallets_with_recovery_response"
}Fields§
§recovery_user_id: StringThe ID of the created user.
wallets: Vec<Wallet>The wallets that were created.
Trait Implementations§
Source§impl Clone for WalletCreateWalletsWithRecoveryResponse
impl Clone for WalletCreateWalletsWithRecoveryResponse
Source§fn clone(&self) -> WalletCreateWalletsWithRecoveryResponse
fn clone(&self) -> WalletCreateWalletsWithRecoveryResponse
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 WalletCreateWalletsWithRecoveryResponse
impl<'de> Deserialize<'de> for WalletCreateWalletsWithRecoveryResponse
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<&WalletCreateWalletsWithRecoveryResponse> for WalletCreateWalletsWithRecoveryResponse
impl From<&WalletCreateWalletsWithRecoveryResponse> for WalletCreateWalletsWithRecoveryResponse
Source§fn from(value: &WalletCreateWalletsWithRecoveryResponse) -> Self
fn from(value: &WalletCreateWalletsWithRecoveryResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for WalletCreateWalletsWithRecoveryResponse
impl RefUnwindSafe for WalletCreateWalletsWithRecoveryResponse
impl Send for WalletCreateWalletsWithRecoveryResponse
impl Sync for WalletCreateWalletsWithRecoveryResponse
impl Unpin for WalletCreateWalletsWithRecoveryResponse
impl UnsafeUnpin for WalletCreateWalletsWithRecoveryResponse
impl UnwindSafe for WalletCreateWalletsWithRecoveryResponse
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