plaid2.model.wallet_list_request module

class plaid2.model.wallet_list_request.WalletListRequest(*, cursor: Optional[str] = None, count: Optional[int] = None, iso_currency_code: Optional[str] = None)[source]

Bases: BaseModel

count: Optional[int]

The number of e-wallets to fetch

cursor: Optional[str]

A base64 value representing the latest e-wallet that has already been requested. Set this to next_cursor received from the previous /wallet/list request. If provided, the response will only contain e-wallets created before that e-wallet. If omitted, the response will contain e-wallets starting from the most recent, and in descending order.

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

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

iso_currency_code: Optional[str]

An ISO-4217 currency code, used with e-wallets and transactions.

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) WalletListRequest[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) WalletListRequest[source]

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