plaid2.model.pay_frequency module
- class plaid2.model.pay_frequency.PayFrequency(*, value: str, verification_status: str)[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
- 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) PayFrequency [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) PayFrequency [source]
Parse a json string into the object. Takes same keyword arguments as pydantic.BaseModel.parse_raw
- value: str
The frequency of the pay period.
- verification_status: str
The verification status. One of the following:
“VERIFIED”: The information was successfully verified.
“UNVERIFIED”: The verification has not yet been performed.
“NEEDS_INFO”: The verification was attempted but could not be completed due to missing information.
“UNABLE_TO_VERIFY”: The verification was performed and the information could not be verified.
“UNKNOWN”: The verification status is unknown.