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