plaid2.model.transfer_intent_get_failure_reason module
- class plaid2.model.transfer_intent_get_failure_reason.TransferIntentGetFailureReason(*, error_message: Optional[str] = None, error_type: Optional[str] = None, error_code: Optional[str] = None)[source]
- Bases: - BaseModel- dict(**kwargs: Any) Dict[str, Any][source]
- Return a dict representation of the object. Takes same keyword arguments as pydantic.BaseModel.dict 
 - error_code: Optional[str]
- A code representing the reason for a failed transfer intent (i.e., an API error or the authorization being declined). - For a full listing of bank transfer errors, see [Bank Transfers errors](https://plaid.com/docs/errors/bank-transfers/). 
 - error_message: Optional[str]
- A human-readable description of the code associated with a failed transfer intent. 
 - error_type: Optional[str]
- A broad categorization of the error. 
 - 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) TransferIntentGetFailureReason[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) TransferIntentGetFailureReason[source]
- Parse a json string into the object. Takes same keyword arguments as pydantic.BaseModel.parse_raw