diff --git a/src/finch/types/hris/employment_data.py b/src/finch/types/hris/employment_data.py index a0bf1220..654a45d5 100644 --- a/src/finch/types/hris/employment_data.py +++ b/src/finch/types/hris/employment_data.py @@ -101,13 +101,4 @@ class EmploymentData(BaseModel): """The current title of the individual.""" work_id: Optional[str] = None - """Note: This property is only available if enabled for your account. - - Please reach out to your Finch representative if you would like access. - """ - - work_id_2: Optional[str] = None - """Note: This property is only available if enabled for your account. - - Please reach out to your Finch representative if you would like access. - """ + """This field is deprecated in favour of `source_id`""" diff --git a/src/finch/types/hris/individual.py b/src/finch/types/hris/individual.py index 65cd42d2..607ae581 100644 --- a/src/finch/types/hris/individual.py +++ b/src/finch/types/hris/individual.py @@ -30,9 +30,10 @@ class Individual(BaseModel): emails: Optional[List[Email]] = None encrypted_ssn: Optional[str] = None - """Note: This property is only available if enabled for your account. + """Social Security Number of the individual in **encrypted** format. - Please reach out to your Finch representative if you would like access. + This field is only available with the `ssn` scope enabled and the + `options: { include: ['ssn'] }` param set in the body. """ ethnicity: Optional[ @@ -69,7 +70,8 @@ class Individual(BaseModel): residence: Optional[Location] = None ssn: Optional[str] = None - """Note: This property is only available if enabled for your account. + """Social Security Number of the individual. - Please reach out to your Finch representative if you would like access. + This field is only available with the `ssn` scope enabled and the + `options: { include: ['ssn'] }` param set in the body. """