plaid2.model.transfer_authorization_decision_rationale module

class plaid2.model.transfer_authorization_decision_rationale.TransferAuthorizationDecisionRationale(*, description: str, code: str)[source]

Bases: BaseModel

code: str

A code representing the rationale for approving or declining the proposed transfer. Possible values are:

MANUALLY_VERIFIED_ITEM – Item created via same-day micro deposits, limited information available. Plaid will offer approved as a transaction decision.

LOGIN_REQUIRED – Unable to collect the account information due to Item staleness. Can be rectified using Link in update mode. Plaid will offer approved as a transaction decision.

ERROR – Unable to collect the account information due to an error. Plaid will offer approved as a transaction decision.

NSF – Transaction likely to result in a return due to insufficient funds. Plaid will offer declined as a transaction decision.

RISK - Transaction is high-risk. Plaid will offer declined as a transaction decision.

TRANSFER_LIMIT_REACHED - One or several transfer limits are reached, e.g. monthly transfer limit. Plaid will offer declined as a transaction decision.

description: str

A human-readable description of the code associated with a transfer approval or transfer decline.

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

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