pub struct GetStripeCryptoCustomerResponse {
pub data: GetStripeCryptoCustomerResponseData,
}Expand description
Stripe onramp session status and customer verification info.
JSON schema
{
"title": "GetStripeCryptoCustomerResponse",
"description": "Stripe onramp session status and customer verification
info.",
"type": "object",
"required": [
"data"
],
"properties": {
"data": {
"oneOf": [
{
"$ref": "#/components/schemas/StripeCryptoCustomerActive"
},
{
"$ref": "#/components/schemas/StripeCryptoCustomerExpired"
},
{
"$ref": "#/components/schemas/StripeCryptoCustomerNone"
}
]
}
},
"x-stainless-model": "onramps.get_stripe_crypto_customer_response"
}Fields§
§data: GetStripeCryptoCustomerResponseDataTrait Implementations§
Source§impl Clone for GetStripeCryptoCustomerResponse
impl Clone for GetStripeCryptoCustomerResponse
Source§fn clone(&self) -> GetStripeCryptoCustomerResponse
fn clone(&self) -> GetStripeCryptoCustomerResponse
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 GetStripeCryptoCustomerResponse
impl<'de> Deserialize<'de> for GetStripeCryptoCustomerResponse
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<&GetStripeCryptoCustomerResponse> for GetStripeCryptoCustomerResponse
impl From<&GetStripeCryptoCustomerResponse> for GetStripeCryptoCustomerResponse
Source§fn from(value: &GetStripeCryptoCustomerResponse) -> Self
fn from(value: &GetStripeCryptoCustomerResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GetStripeCryptoCustomerResponse
impl RefUnwindSafe for GetStripeCryptoCustomerResponse
impl Send for GetStripeCryptoCustomerResponse
impl Sync for GetStripeCryptoCustomerResponse
impl Unpin for GetStripeCryptoCustomerResponse
impl UnsafeUnpin for GetStripeCryptoCustomerResponse
impl UnwindSafe for GetStripeCryptoCustomerResponse
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