plaid2.model.link_token_create_request_auth module
- class plaid2.model.link_token_create_request_auth.LinkTokenCreateRequestAuth(*, flow_type: Optional[str] = None, auth_type_select_enabled: Optional[bool] = None, automated_microdeposits_enabled: Optional[bool] = None, instant_match_enabled: Optional[bool] = None, same_day_microdeposits_enabled: Optional[bool] = None)[source]
Bases:
BaseModel
- auth_type_select_enabled: Optional[bool]
Specifies whether Auth Type Select is enabled for the Link session, allowing the end user to choose between linking instantly or manually prior to selecting their financial institution. Note that this can only be true if same_day_microdeposits_enabled is set to true.
- automated_microdeposits_enabled: Optional[bool]
Specifies whether the Link session is enabled for the Automated Micro-deposits flow.
- dict(**kwargs: Any) Dict[str, Any] [source]
Return a dict representation of the object. Takes same keyword arguments as pydantic.BaseModel.dict
- flow_type: Optional[str]
This field has been deprecated in favor of auth_type_select_enabled.
- instant_match_enabled: Optional[bool]
Specifies whether the Link session is enabled for the Instant Match flow.
- json(**kwargs: Any) str [source]
Return a json string representation of the object. Takes same keyword arguments as pydantic.BaseModel.json
- classmethod parse_obj(data: Any) LinkTokenCreateRequestAuth [source]
Parse a dict into the object. Takes same keyword arguments as pydantic.BaseModel.parse_obj
- classmethod parse_raw(b: Union[bytes, str], **kwargs: Any) LinkTokenCreateRequestAuth [source]
Parse a json string into the object. Takes same keyword arguments as pydantic.BaseModel.parse_raw
- same_day_microdeposits_enabled: Optional[bool]
Specifies whether the Link session is enabled for the Same Day Micro-deposits flow.