plaid2.model.auth_supported_methods module
- class plaid2.model.auth_supported_methods.AuthSupportedMethods(*, instant_auth: bool, instant_match: bool, automated_micro_deposits: bool)[source]
Bases:
BaseModel
- automated_micro_deposits: bool
Indicates if automated microdeposits are supported.
- dict(**kwargs: Any) Dict[str, Any] [source]
Return a dict representation of the object. Takes same keyword arguments as pydantic.BaseModel.dict
- instant_auth: bool
Indicates if instant auth is supported.
- instant_match: bool
Indicates if instant match is supported.
- 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) AuthSupportedMethods [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) AuthSupportedMethods [source]
Parse a json string into the object. Takes same keyword arguments as pydantic.BaseModel.parse_raw