@@ -47,7 +47,7 @@ def update(
4747 individual_id : str ,
4848 * ,
4949 class_code : Optional [str ] | NotGiven = NOT_GIVEN ,
50- custom_fields : Iterable [employment_update_params .CustomField ] | NotGiven = NOT_GIVEN ,
50+ custom_fields : Optional [ Iterable [employment_update_params .CustomField ] ] | NotGiven = NOT_GIVEN ,
5151 department : Optional [employment_update_params .Department ] | NotGiven = NOT_GIVEN ,
5252 employment : Optional [employment_update_params .Employment ] | NotGiven = NOT_GIVEN ,
5353 employment_status : Optional [
@@ -64,7 +64,7 @@ def update(
6464 location : Optional [LocationParam ] | NotGiven = NOT_GIVEN ,
6565 manager : Optional [employment_update_params .Manager ] | NotGiven = NOT_GIVEN ,
6666 middle_name : Optional [str ] | NotGiven = NOT_GIVEN ,
67- source_id : str | NotGiven = NOT_GIVEN ,
67+ source_id : Optional [ str ] | NotGiven = NOT_GIVEN ,
6868 start_date : Optional [str ] | NotGiven = NOT_GIVEN ,
6969 title : Optional [str ] | NotGiven = NOT_GIVEN ,
7070 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -88,7 +88,8 @@ def update(
8888
8989 employment: The employment object.
9090
91- employment_status: The detailed employment status of the individual.
91+ employment_status: The detailed employment status of the individual. Available options: `active`,
92+ `deceased`, `leave`, `onboarding`, `prehire`, `retired`, `terminated`.
9293
9394 first_name: The legal first name of the individual.
9495
@@ -179,7 +180,7 @@ async def update(
179180 individual_id : str ,
180181 * ,
181182 class_code : Optional [str ] | NotGiven = NOT_GIVEN ,
182- custom_fields : Iterable [employment_update_params .CustomField ] | NotGiven = NOT_GIVEN ,
183+ custom_fields : Optional [ Iterable [employment_update_params .CustomField ] ] | NotGiven = NOT_GIVEN ,
183184 department : Optional [employment_update_params .Department ] | NotGiven = NOT_GIVEN ,
184185 employment : Optional [employment_update_params .Employment ] | NotGiven = NOT_GIVEN ,
185186 employment_status : Optional [
@@ -196,7 +197,7 @@ async def update(
196197 location : Optional [LocationParam ] | NotGiven = NOT_GIVEN ,
197198 manager : Optional [employment_update_params .Manager ] | NotGiven = NOT_GIVEN ,
198199 middle_name : Optional [str ] | NotGiven = NOT_GIVEN ,
199- source_id : str | NotGiven = NOT_GIVEN ,
200+ source_id : Optional [ str ] | NotGiven = NOT_GIVEN ,
200201 start_date : Optional [str ] | NotGiven = NOT_GIVEN ,
201202 title : Optional [str ] | NotGiven = NOT_GIVEN ,
202203 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -220,7 +221,8 @@ async def update(
220221
221222 employment: The employment object.
222223
223- employment_status: The detailed employment status of the individual.
224+ employment_status: The detailed employment status of the individual. Available options: `active`,
225+ `deceased`, `leave`, `onboarding`, `prehire`, `retired`, `terminated`.
224226
225227 first_name: The legal first name of the individual.
226228
0 commit comments