pub struct ListStripeConsumerWalletsResponse {
pub data: Vec<StripeConsumerWallet>,
}Expand description
List of registered wallets for a crypto customer.
JSON schema
{
"title": "ListStripeConsumerWalletsResponse",
"description": "List of registered wallets for a crypto customer.",
"type": "object",
"required": [
"data"
],
"properties": {
"data": {
"type": "array",
"items": {
"$ref": "#/components/schemas/StripeConsumerWallet"
}
}
},
"x-stainless-model": "onramps.list_stripe_consumer_wallets_response"
}Fields§
§data: Vec<StripeConsumerWallet>Trait Implementations§
Source§impl Clone for ListStripeConsumerWalletsResponse
impl Clone for ListStripeConsumerWalletsResponse
Source§fn clone(&self) -> ListStripeConsumerWalletsResponse
fn clone(&self) -> ListStripeConsumerWalletsResponse
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 ListStripeConsumerWalletsResponse
impl<'de> Deserialize<'de> for ListStripeConsumerWalletsResponse
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<&ListStripeConsumerWalletsResponse> for ListStripeConsumerWalletsResponse
impl From<&ListStripeConsumerWalletsResponse> for ListStripeConsumerWalletsResponse
Source§fn from(value: &ListStripeConsumerWalletsResponse) -> Self
fn from(value: &ListStripeConsumerWalletsResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ListStripeConsumerWalletsResponse
impl RefUnwindSafe for ListStripeConsumerWalletsResponse
impl Send for ListStripeConsumerWalletsResponse
impl Sync for ListStripeConsumerWalletsResponse
impl Unpin for ListStripeConsumerWalletsResponse
impl UnsafeUnpin for ListStripeConsumerWalletsResponse
impl UnwindSafe for ListStripeConsumerWalletsResponse
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