pub struct LinkTokenCreateRequestIdentityVerification {
pub consent: Option<bool>,
pub gave_consent: Option<bool>,
pub template_id: String,
}
Expand description
Specifies option for initializing Link for use with the Identity Verification product.
Fields§
§consent: Option<bool>
§gave_consent: Option<bool>
A flag specifying whether the end user has already agreed to a privacy policy specifying that their data will be shared with Plaid for verification purposes.
If gave_consent
is set to true
, the accept_tos
step will be marked as skipped
and the end user’s session will start at the next step requirement.
template_id: String
Trait Implementations§
Source§impl Clone for LinkTokenCreateRequestIdentityVerification
impl Clone for LinkTokenCreateRequestIdentityVerification
Source§fn clone(&self) -> LinkTokenCreateRequestIdentityVerification
fn clone(&self) -> LinkTokenCreateRequestIdentityVerification
Returns a copy 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 Default for LinkTokenCreateRequestIdentityVerification
impl Default for LinkTokenCreateRequestIdentityVerification
Source§fn default() -> LinkTokenCreateRequestIdentityVerification
fn default() -> LinkTokenCreateRequestIdentityVerification
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LinkTokenCreateRequestIdentityVerification
impl<'de> Deserialize<'de> for LinkTokenCreateRequestIdentityVerification
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
Auto Trait Implementations§
impl Freeze for LinkTokenCreateRequestIdentityVerification
impl RefUnwindSafe for LinkTokenCreateRequestIdentityVerification
impl Send for LinkTokenCreateRequestIdentityVerification
impl Sync for LinkTokenCreateRequestIdentityVerification
impl Unpin for LinkTokenCreateRequestIdentityVerification
impl UnwindSafe for LinkTokenCreateRequestIdentityVerification
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