plaid2.model.numbers_ach module
- class plaid2.model.numbers_ach.NumbersAch(*, account: str, account_id: str, routing: str, wire_routing: Optional[str] = None)[source]
Bases:
BaseModel
- account: str
The ACH account number for the account.
Note that when using OAuth with Chase Bank (ins_56), Chase will issue “tokenized” routing and account numbers, which are not the user’s actual account and routing numbers. These tokenized numbers should work identically to normal account and routing numbers. The digits returned in the mask field will continue to reflect the actual account number, rather than the tokenized account number; for this reason, when displaying account numbers to the user to help them identify their account in your UI, always use the mask rather than truncating the account number. If a user revokes their permissions to your app, the tokenized numbers will continue to work for ACH deposits, but not withdrawals.
- account_id: str
The Plaid account ID associated with the account numbers
- 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) NumbersAch [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) NumbersAch [source]
Parse a json string into the object. Takes same keyword arguments as pydantic.BaseModel.parse_raw
- routing: str
The ACH routing number for the account. If the institution is ins_56, this may be a tokenized routing number. For more information, see the description of the account field.
- wire_routing: Optional[str]
The wire transfer routing number for the account, if available