plaid2.model.payment_initiation_payment_list_request module

class plaid2.model.payment_initiation_payment_list_request.PaymentInitiationPaymentListRequest(*, cursor: Optional[str] = None, count: Optional[int] = None, consent_id: Optional[str] = None)[source]

Bases: BaseModel

consent_id: Optional[str]

The consent ID. If specified, only payments, executed using this consent, will be returned.

count: Optional[int]

The maximum number of payments to return. If count is not specified, a maximum of 10 payments will be returned, beginning with the most recent payment before the cursor (if specified).

cursor: Optional[str]

49Z”). Only payments created before the cursor will be returned.

Type

A string in RFC 3339 format (i.e. “2019-12-06T22

Type

35

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

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