pub struct WalletCustodian {
pub provider: String,
pub provider_user_id: String,
}Expand description
Information about the custodian managing this wallet.
JSON schema
{
"title": "WalletCustodian",
"description": "Information about the custodian managing this wallet.",
"type": "object",
"required": [
"provider",
"provider_user_id"
],
"properties": {
"provider": {
"description": "The custodian responsible for the wallet.",
"type": "string"
},
"provider_user_id": {
"description": "The resource ID of the beneficiary of the custodial
wallet.",
"type": "string"
}
},
"x-stainless-model": "wallets.wallet_custodian"
}Fields§
§provider: StringThe custodian responsible for the wallet.
provider_user_id: StringThe resource ID of the beneficiary of the custodial wallet.
Trait Implementations§
Source§impl Clone for WalletCustodian
impl Clone for WalletCustodian
Source§fn clone(&self) -> WalletCustodian
fn clone(&self) -> WalletCustodian
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 WalletCustodian
impl Debug for WalletCustodian
Source§impl<'de> Deserialize<'de> for WalletCustodian
impl<'de> Deserialize<'de> for WalletCustodian
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<&WalletCustodian> for WalletCustodian
impl From<&WalletCustodian> for WalletCustodian
Source§fn from(value: &WalletCustodian) -> Self
fn from(value: &WalletCustodian) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for WalletCustodian
impl RefUnwindSafe for WalletCustodian
impl Send for WalletCustodian
impl Sync for WalletCustodian
impl Unpin for WalletCustodian
impl UnsafeUnpin for WalletCustodian
impl UnwindSafe for WalletCustodian
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