plaid2.model.account_filters_response module

class plaid2.model.account_filters_response.AccountFiltersResponse(*, loan: Optional[List[str]] = None, depository: Optional[List[str]] = None, investment: Optional[List[str]] = None, credit: Optional[List[str]] = None)[source]

Bases: BaseModel

credit: Optional[List[str]]

A filter to apply to credit-type accounts

depository: Optional[List[str]]

A filter to apply to depository-type accounts

dict(**kwargs: Any) Dict[str, Any][source]

Return a dict representation of the object. Takes same keyword arguments as pydantic.BaseModel.dict

investment: Optional[List[str]]

A filter to apply to investment-type accounts (or brokerage-type accounts for API versions 2018-05-22 and earlier).

json(**kwargs: Any) str[source]

Return a json string representation of the object. Takes same keyword arguments as pydantic.BaseModel.json

loan: Optional[List[str]]

A filter to apply to loan-type accounts

classmethod parse_obj(data: Any) AccountFiltersResponse[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) AccountFiltersResponse[source]

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