pub struct LinkTokenCreateRequestAuth {
pub auth_type_select_enabled: Option<bool>,
pub automated_microdeposits_enabled: Option<bool>,
pub database_insights_enabled: Option<bool>,
pub database_match_enabled: Option<bool>,
pub flow_type: Option<String>,
pub instant_match_enabled: Option<bool>,
pub instant_microdeposits_enabled: Option<bool>,
pub reroute_to_credentials: Option<String>,
pub same_day_microdeposits_enabled: Option<bool>,
pub sms_microdeposits_verification_enabled: Option<bool>,
}Expand description
Specifies options for initializing Link for use with the Auth product. This field can be used to enable or disable extended Auth flows for the resulting Link session. Omitting any field will result in a default that can be configured by your account manager. The default behavior described in the documentation is the default behavior that will apply if you have not requested your account manager to apply a different default.
Fields§
§auth_type_select_enabled: Option<bool>Specifies whether Auth Type Select is enabled for the Link session, allowing the end user to choose between linking via a credentials-based flow (i.e. Instant Auth, Instant Match, Automated Micro-deposits) or a manual flow that does not require login (all other Auth flows) prior to selecting their financial institution. Default behavior is false.
automated_microdeposits_enabled: Option<bool>Specifies whether the Link session is enabled for the Automated Micro-deposits flow. Default behavior is false.
database_insights_enabled: Option<bool>Specifies whether the Link session is enabled for the Database Insights flow. Database Insights is currently in closed beta; for access, contact your Account Manager. Default behavior is false.
database_match_enabled: Option<bool>Specifies whether the Link session is enabled for the Database Match flow. Default behavior is false.
flow_type: Option<String>This field has been deprecated in favor of auth_type_select_enabled.
instant_match_enabled: Option<bool>Specifies whether the Link session is enabled for the Instant Match flow. Instant Match is enabled by default. Instant Match can be disabled by setting this field to false.
instant_microdeposits_enabled: Option<bool>Specifies whether the Link session is enabled for the Instant Micro-deposits flow. Default behavior for Plaid teams created after November 2023 is false; default behavior for Plaid teams created before that date is true.
reroute_to_credentials: Option<String>Specifies what type of Reroute to Credentials pane should be used in the Link session for the Same Day Micro-deposits flow. Default behavior is OPTIONAL.
same_day_microdeposits_enabled: Option<bool>Specifies whether the Link session is enabled for the Same Day Micro-deposits flow. Default behavior is false.
sms_microdeposits_verification_enabled: Option<bool>Specifies whether the Link session is enabled for SMS micro-deposits verification. Default behavior is true.
Trait Implementations§
Source§impl Clone for LinkTokenCreateRequestAuth
impl Clone for LinkTokenCreateRequestAuth
Source§fn clone(&self) -> LinkTokenCreateRequestAuth
fn clone(&self) -> LinkTokenCreateRequestAuth
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more