pub struct StripeCryptoCustomerNone {
pub status: StripeCryptoCustomerNoneStatus,
}Expand description
No onramp session. User must authenticate via Link.
JSON schema
{
"title": "StripeCryptoCustomerNone",
"description": "No onramp session. User must authenticate via Link.",
"type": "object",
"required": [
"status"
],
"properties": {
"status": {
"type": "string",
"enum": [
"none"
]
}
},
"x-stainless-model": "onramps.stripe_crypto_customer_none"
}Fields§
§status: StripeCryptoCustomerNoneStatusTrait Implementations§
Source§impl Clone for StripeCryptoCustomerNone
impl Clone for StripeCryptoCustomerNone
Source§fn clone(&self) -> StripeCryptoCustomerNone
fn clone(&self) -> StripeCryptoCustomerNone
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 StripeCryptoCustomerNone
impl Debug for StripeCryptoCustomerNone
Source§impl<'de> Deserialize<'de> for StripeCryptoCustomerNone
impl<'de> Deserialize<'de> for StripeCryptoCustomerNone
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<&StripeCryptoCustomerNone> for StripeCryptoCustomerNone
impl From<&StripeCryptoCustomerNone> for StripeCryptoCustomerNone
Source§fn from(value: &StripeCryptoCustomerNone) -> Self
fn from(value: &StripeCryptoCustomerNone) -> Self
Converts to this type from the input type.
Source§impl From<StripeCryptoCustomerNone> for GetStripeCryptoCustomerResponseData
impl From<StripeCryptoCustomerNone> for GetStripeCryptoCustomerResponseData
Source§fn from(value: StripeCryptoCustomerNone) -> Self
fn from(value: StripeCryptoCustomerNone) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for StripeCryptoCustomerNone
impl RefUnwindSafe for StripeCryptoCustomerNone
impl Send for StripeCryptoCustomerNone
impl Sync for StripeCryptoCustomerNone
impl Unpin for StripeCryptoCustomerNone
impl UnsafeUnpin for StripeCryptoCustomerNone
impl UnwindSafe for StripeCryptoCustomerNone
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