plaid2.model.account_product_access module

class plaid2.model.account_product_access.AccountProductAccess(*, account_data: Optional[bool] = None, statements: Optional[bool] = None, tax_documents: Optional[bool] = None)[source]

Bases: BaseModel

account_data: Optional[bool]

Allow the application to access account data. Only used by certain partners. If relevant to the partner and 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) AccountProductAccess[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) AccountProductAccess[source]

Parse a json string into the object. Takes same keyword arguments as pydantic.BaseModel.parse_raw

statements: Optional[bool]

Allow the application to access bank statements. Only used by certain partners. If relevant to the partner and unset, defaults to true.

tax_documents: Optional[bool]

Allow the application to access tax documents. Only used by certain partners. If relevant to the partner and unset, defaults to true.