pub struct StripeCryptoCustomerActive {
pub crypto_customer_id: String,
pub status: StripeCryptoCustomerActiveStatus,
pub verifications: Vec<StripeVerification>,
}Expand description
Active onramp session with customer verifications.
JSON schema
{
"title": "StripeCryptoCustomerActive",
"description": "Active onramp session with customer verifications.",
"type": "object",
"required": [
"crypto_customer_id",
"status",
"verifications"
],
"properties": {
"crypto_customer_id": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"active"
]
},
"verifications": {
"type": "array",
"items": {
"$ref": "#/components/schemas/StripeVerification"
}
}
},
"x-stainless-model": "onramps.stripe_crypto_customer_active"
}Fields§
§crypto_customer_id: String§status: StripeCryptoCustomerActiveStatus§verifications: Vec<StripeVerification>Trait Implementations§
Source§impl Clone for StripeCryptoCustomerActive
impl Clone for StripeCryptoCustomerActive
Source§fn clone(&self) -> StripeCryptoCustomerActive
fn clone(&self) -> StripeCryptoCustomerActive
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 StripeCryptoCustomerActive
impl Debug for StripeCryptoCustomerActive
Source§impl<'de> Deserialize<'de> for StripeCryptoCustomerActive
impl<'de> Deserialize<'de> for StripeCryptoCustomerActive
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<&StripeCryptoCustomerActive> for StripeCryptoCustomerActive
impl From<&StripeCryptoCustomerActive> for StripeCryptoCustomerActive
Source§fn from(value: &StripeCryptoCustomerActive) -> Self
fn from(value: &StripeCryptoCustomerActive) -> Self
Converts to this type from the input type.
Source§impl From<StripeCryptoCustomerActive> for GetStripeCryptoCustomerResponseData
impl From<StripeCryptoCustomerActive> for GetStripeCryptoCustomerResponseData
Source§fn from(value: StripeCryptoCustomerActive) -> Self
fn from(value: StripeCryptoCustomerActive) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for StripeCryptoCustomerActive
impl RefUnwindSafe for StripeCryptoCustomerActive
impl Send for StripeCryptoCustomerActive
impl Sync for StripeCryptoCustomerActive
impl Unpin for StripeCryptoCustomerActive
impl UnsafeUnpin for StripeCryptoCustomerActive
impl UnwindSafe for StripeCryptoCustomerActive
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