plaid2.model.employment_details module
- class plaid2.model.employment_details.EmploymentDetails(*, annual_salary: Optional[Pay] = None, hire_date: 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
- hire_date: Optional[str]
Date on which the employee was hired, in the YYYY-MM-DD format.
- 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) EmploymentDetails [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) EmploymentDetails [source]
Parse a json string into the object. Takes same keyword arguments as pydantic.BaseModel.parse_raw