@@ -58,6 +58,7 @@ def update(
58
58
income_history : Optional [Iterable [Optional [IncomeParam ]]] | NotGiven = NOT_GIVEN ,
59
59
is_active : Optional [bool ] | NotGiven = NOT_GIVEN ,
60
60
last_name : Optional [str ] | NotGiven = NOT_GIVEN ,
61
+ latest_rehire_date : Optional [str ] | NotGiven = NOT_GIVEN ,
61
62
location : Optional [LocationParam ] | NotGiven = NOT_GIVEN ,
62
63
manager : Optional [employment_update_params .Manager ] | NotGiven = NOT_GIVEN ,
63
64
middle_name : Optional [str ] | NotGiven = NOT_GIVEN ,
@@ -131,6 +132,7 @@ def update(
131
132
"income_history" : income_history ,
132
133
"is_active" : is_active ,
133
134
"last_name" : last_name ,
135
+ "latest_rehire_date" : latest_rehire_date ,
134
136
"location" : location ,
135
137
"manager" : manager ,
136
138
"middle_name" : middle_name ,
@@ -181,6 +183,7 @@ async def update(
181
183
income_history : Optional [Iterable [Optional [IncomeParam ]]] | NotGiven = NOT_GIVEN ,
182
184
is_active : Optional [bool ] | NotGiven = NOT_GIVEN ,
183
185
last_name : Optional [str ] | NotGiven = NOT_GIVEN ,
186
+ latest_rehire_date : Optional [str ] | NotGiven = NOT_GIVEN ,
184
187
location : Optional [LocationParam ] | NotGiven = NOT_GIVEN ,
185
188
manager : Optional [employment_update_params .Manager ] | NotGiven = NOT_GIVEN ,
186
189
middle_name : Optional [str ] | NotGiven = NOT_GIVEN ,
@@ -254,6 +257,7 @@ async def update(
254
257
"income_history" : income_history ,
255
258
"is_active" : is_active ,
256
259
"last_name" : last_name ,
260
+ "latest_rehire_date" : latest_rehire_date ,
257
261
"location" : location ,
258
262
"manager" : manager ,
259
263
"middle_name" : middle_name ,
0 commit comments