plaid2.model.transfer_authorization_guarantee_decision_rationale module

class plaid2.model.transfer_authorization_guarantee_decision_rationale.TransferAuthorizationGuaranteeDecisionRationale(*, code: str, description: str)[source]

Bases: BaseModel

code: str

A code representing the reason Plaid declined to guarantee this transfer:

RETURN_BANK: The risk of a bank-initiated return (for example, an R01/NSF) is too high to guarantee this transfer.

RETURN_CUSTOMER: The risk of a customer-initiated return (for example, a R10/Unauthorized) is too high to guarantee this transfer.

GUARANTEE_LIMIT_REACHED: This transfer is low-risk, but Guaranteed ACH has exhausted an internal limit on the number or rate of guarantees that applies to this transfer.

RISK_ESTIMATE_UNAVAILABLE: A risk estimate is unavailable for this Item.

REQUIRED_PARAM_MISSING: Required fields are missing.

description: str

A human-readable description of why the transfer cannot be guaranteed.

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

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