File tree 2 files changed +7
-14
lines changed
2 files changed +7
-14
lines changed Original file line number Diff line number Diff line change @@ -101,13 +101,4 @@ class EmploymentData(BaseModel):
101
101
"""The current title of the individual."""
102
102
103
103
work_id : Optional [str ] = None
104
- """Note: This property is only available if enabled for your account.
105
-
106
- Please reach out to your Finch representative if you would like access.
107
- """
108
-
109
- work_id_2 : Optional [str ] = None
110
- """Note: This property is only available if enabled for your account.
111
-
112
- Please reach out to your Finch representative if you would like access.
113
- """
104
+ """This field is deprecated in favour of `source_id`"""
Original file line number Diff line number Diff line change @@ -30,9 +30,10 @@ class Individual(BaseModel):
30
30
emails : Optional [List [Email ]] = None
31
31
32
32
encrypted_ssn : Optional [str ] = None
33
- """Note: This property is only available if enabled for your account .
33
+ """Social Security Number of the individual in **encrypted** format .
34
34
35
- Please reach out to your Finch representative if you would like access.
35
+ This field is only available with the `ssn` scope enabled and the
36
+ `options: { include: ['ssn'] }` param set in the body.
36
37
"""
37
38
38
39
ethnicity : Optional [
@@ -69,7 +70,8 @@ class Individual(BaseModel):
69
70
residence : Optional [Location ] = None
70
71
71
72
ssn : Optional [str ] = None
72
- """Note: This property is only available if enabled for your account .
73
+ """Social Security Number of the individual .
73
74
74
- Please reach out to your Finch representative if you would like access.
75
+ This field is only available with the `ssn` scope enabled and the
76
+ `options: { include: ['ssn'] }` param set in the body.
75
77
"""
You can’t perform that action at this time.
0 commit comments