plaid2.model.account_access module
- class plaid2.model.account_access.AccountAccess(*, unique_id: str, authorized: Optional[bool] = None, account_product_access: Optional[AccountProductAccess] = None)[source]
Bases:
BaseModel
- account_product_access: Optional[AccountProductAccess]
Allow the application to access specific products on this account
- authorized: Optional[bool]
Allow the application to see this account (and associated details, including balance) in the list of accounts If unset, defaults to true.
- dict(**kwargs: Any) Dict[str, Any] [source]
Return a dict representation of the object. Takes same keyword arguments as pydantic.BaseModel.dict
- 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) AccountAccess [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) AccountAccess [source]
Parse a json string into the object. Takes same keyword arguments as pydantic.BaseModel.parse_raw
- unique_id: str
The unique account identifier for this account. This value must match that returned by the data access API for this account.