plaid2.model.bank_transfer_list_request module

class plaid2.model.bank_transfer_list_request.BankTransferListRequest(*, start_date: Optional[str] = None, offset: Optional[int] = None, origination_account_id: Optional[str] = None, count: Optional[int] = None, direction: Optional[str] = None, end_date: Optional[str] = None)[source]

Bases: BaseModel

count: Optional[int]

The maximum number of bank transfers to return.

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

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

direction: Optional[str]

outbound for API-initiated transfers, or inbound for payments received by the FBO account.

Type

Indicates the direction of the transfer

end_date: Optional[str]

49Z`)

Type

The end datetime of bank transfers to list. This should be in RFC 3339 format (i.e. `2019-12-06T22

Type

35

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

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

offset: Optional[int]

The number of bank transfers to skip before returning results.

origination_account_id: Optional[str]

Filter bank transfers to only those originated through the specified origination account.

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

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

start_date: Optional[str]

49Z`)

Type

The start datetime of bank transfers to list. This should be in RFC 3339 format (i.e. `2019-12-06T22

Type

35