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