pub struct StripeConsumerWallet {
pub id: String,
pub network: String,
pub wallet_address: String,
}Expand description
A registered consumer wallet.
JSON schema
{
"title": "StripeConsumerWallet",
"description": "A registered consumer wallet.",
"type": "object",
"required": [
"id",
"network",
"wallet_address"
],
"properties": {
"id": {
"type": "string"
},
"network": {
"type": "string"
},
"wallet_address": {
"type": "string"
}
},
"x-stainless-model": "onramps.stripe_consumer_wallet"
}Fields§
§id: String§network: String§wallet_address: StringTrait Implementations§
Source§impl Clone for StripeConsumerWallet
impl Clone for StripeConsumerWallet
Source§fn clone(&self) -> StripeConsumerWallet
fn clone(&self) -> StripeConsumerWallet
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 StripeConsumerWallet
impl Debug for StripeConsumerWallet
Source§impl<'de> Deserialize<'de> for StripeConsumerWallet
impl<'de> Deserialize<'de> for StripeConsumerWallet
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<&StripeConsumerWallet> for StripeConsumerWallet
impl From<&StripeConsumerWallet> for StripeConsumerWallet
Source§fn from(value: &StripeConsumerWallet) -> Self
fn from(value: &StripeConsumerWallet) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for StripeConsumerWallet
impl RefUnwindSafe for StripeConsumerWallet
impl Send for StripeConsumerWallet
impl Sync for StripeConsumerWallet
impl Unpin for StripeConsumerWallet
impl UnsafeUnpin for StripeConsumerWallet
impl UnwindSafe for StripeConsumerWallet
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