pub struct StripeVerification {
pub name: String,
pub status: String,
}Expand description
A verification entry on a CryptoCustomer.
JSON schema
{
"title": "StripeVerification",
"description": "A verification entry on a CryptoCustomer.",
"type": "object",
"required": [
"name",
"status"
],
"properties": {
"name": {
"type": "string"
},
"status": {
"type": "string"
}
},
"x-stainless-model": "onramps.stripe_verification"
}Fields§
§name: String§status: StringTrait Implementations§
Source§impl Clone for StripeVerification
impl Clone for StripeVerification
Source§fn clone(&self) -> StripeVerification
fn clone(&self) -> StripeVerification
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 StripeVerification
impl Debug for StripeVerification
Source§impl<'de> Deserialize<'de> for StripeVerification
impl<'de> Deserialize<'de> for StripeVerification
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<&StripeVerification> for StripeVerification
impl From<&StripeVerification> for StripeVerification
Source§fn from(value: &StripeVerification) -> Self
fn from(value: &StripeVerification) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for StripeVerification
impl RefUnwindSafe for StripeVerification
impl Send for StripeVerification
impl Sync for StripeVerification
impl Unpin for StripeVerification
impl UnsafeUnpin for StripeVerification
impl UnwindSafe for StripeVerification
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