pub enum OnrampKycStatus {
Active,
AwaitingQuestionnaire,
AwaitingUbo,
Incomplete,
NotFound,
NotStarted,
Offboarded,
Paused,
Rejected,
UnderReview,
}Expand description
Status of the KYC verification process.
JSON schema
{
"title": "OnrampKycStatus",
"description": "Status of the KYC verification process.",
"type": "string",
"enum": [
"active",
"awaiting_questionnaire",
"awaiting_ubo",
"incomplete",
"not_found",
"not_started",
"offboarded",
"paused",
"rejected",
"under_review"
],
"x-stainless-model": "fiat.onramp_kyc_status"
}Variants§
Active
AwaitingQuestionnaire
AwaitingUbo
Incomplete
NotFound
NotStarted
Offboarded
Paused
Rejected
UnderReview
Trait Implementations§
Source§impl Clone for OnrampKycStatus
impl Clone for OnrampKycStatus
Source§fn clone(&self) -> OnrampKycStatus
fn clone(&self) -> OnrampKycStatus
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 moreimpl Copy for OnrampKycStatus
Source§impl Debug for OnrampKycStatus
impl Debug for OnrampKycStatus
Source§impl<'de> Deserialize<'de> for OnrampKycStatus
impl<'de> Deserialize<'de> for OnrampKycStatus
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 Display for OnrampKycStatus
impl Display for OnrampKycStatus
impl Eq for OnrampKycStatus
Source§impl From<&OnrampKycStatus> for OnrampKycStatus
impl From<&OnrampKycStatus> for OnrampKycStatus
Source§fn from(value: &OnrampKycStatus) -> Self
fn from(value: &OnrampKycStatus) -> Self
Converts to this type from the input type.
Source§impl FromStr for OnrampKycStatus
impl FromStr for OnrampKycStatus
Source§impl Hash for OnrampKycStatus
impl Hash for OnrampKycStatus
Source§impl Ord for OnrampKycStatus
impl Ord for OnrampKycStatus
Source§fn cmp(&self, other: &OnrampKycStatus) -> Ordering
fn cmp(&self, other: &OnrampKycStatus) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for OnrampKycStatus
impl PartialEq for OnrampKycStatus
Source§fn eq(&self, other: &OnrampKycStatus) -> bool
fn eq(&self, other: &OnrampKycStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for OnrampKycStatus
impl PartialOrd for OnrampKycStatus
Source§impl Serialize for OnrampKycStatus
impl Serialize for OnrampKycStatus
impl StructuralPartialEq for OnrampKycStatus
Source§impl TryFrom<&String> for OnrampKycStatus
impl TryFrom<&String> for OnrampKycStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for OnrampKycStatus
impl TryFrom<&str> for OnrampKycStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for OnrampKycStatus
impl TryFrom<String> for OnrampKycStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for OnrampKycStatus
impl RefUnwindSafe for OnrampKycStatus
impl Send for OnrampKycStatus
impl Sync for OnrampKycStatus
impl Unpin for OnrampKycStatus
impl UnsafeUnpin for OnrampKycStatus
impl UnwindSafe for OnrampKycStatus
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