plaid2.model.payment_consent_periodic_amount module
- class plaid2.model.payment_consent_periodic_amount.PaymentConsentPeriodicAmount(*, amount: PaymentAmount, interval: str, alignment: str)[source]
Bases:
BaseModel
- alignment: str
Where the payment consent period should start.
CALENDAR: line up with a calendar.
CONSENT: on the date of consent creation.
- amount: PaymentAmount
Maximum cumulative amount for all payments in the specified interval.
- dict(**kwargs: Any) Dict[str, Any] [source]
Return a dict representation of the object. Takes same keyword arguments as pydantic.BaseModel.dict
- interval: str
Payment consent periodic interval.
- 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) PaymentConsentPeriodicAmount [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) PaymentConsentPeriodicAmount [source]
Parse a json string into the object. Takes same keyword arguments as pydantic.BaseModel.parse_raw