plaid2.model.product_status_breakdown module
- class plaid2.model.product_status_breakdown.ProductStatusBreakdown(*, error_institution: float, error_plaid: float, success: float, refresh_interval: 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_institution: float
The percentage of logins that are failing due to an issue in the institution’s system, expressed as a decimal.
- error_plaid: float
The percentage of logins that are failing due to an internal Plaid issue, expressed as a decimal.
- 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) ProductStatusBreakdown [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) ProductStatusBreakdown [source]
Parse a json string into the object. Takes same keyword arguments as pydantic.BaseModel.parse_raw
- refresh_interval: Optional[str]
The refresh_interval may be DELAYED or STOPPED even when the success rate is high. This value is only returned for Transactions status breakdowns.
- success: float
The percentage of login attempts that are successful, expressed as a decimal.