pub enum PrefillOnboardingRequest {
SumSubToken {
request_type: String,
token: String,
},
BusinessCustomerPrefill(Value),
IndividualCustomerPrefill(Value),
}Expand description
Prefill onboarding request (simplified - can be extended)
Variants§
SumSubToken
SumSub token
BusinessCustomerPrefill(Value)
Business customer prefill
IndividualCustomerPrefill(Value)
Individual customer prefill
Trait Implementations§
Source§impl Clone for PrefillOnboardingRequest
impl Clone for PrefillOnboardingRequest
Source§fn clone(&self) -> PrefillOnboardingRequest
fn clone(&self) -> PrefillOnboardingRequest
Returns a duplicate of the value. Read more
1.0.0 · 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 PrefillOnboardingRequest
impl Debug for PrefillOnboardingRequest
Auto Trait Implementations§
impl Freeze for PrefillOnboardingRequest
impl RefUnwindSafe for PrefillOnboardingRequest
impl Send for PrefillOnboardingRequest
impl Sync for PrefillOnboardingRequest
impl Unpin for PrefillOnboardingRequest
impl UnwindSafe for PrefillOnboardingRequest
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