@@ -56,6 +56,7 @@ def update(
5656 | Omit = omit ,
5757 end_date : Optional [str ] | Omit = omit ,
5858 first_name : Optional [str ] | Omit = omit ,
59+ flsa_status : Optional [Literal ["exempt" , "non_exempt" , "unknown" ]] | Omit = omit ,
5960 income : Optional [IncomeParam ] | Omit = omit ,
6061 income_history : Optional [Iterable [Optional [IncomeParam ]]] | Omit = omit ,
6162 is_active : Optional [bool ] | Omit = omit ,
@@ -92,6 +93,9 @@ def update(
9293
9394 first_name: The legal first name of the individual.
9495
96+ flsa_status: The FLSA status of the individual. Available options: `exempt`, `non_exempt`,
97+ `unknown`.
98+
9599 income: The employee's income as reported by the provider. This may not always be
96100 annualized income, but may be in units of bi-weekly, semi-monthly, daily, etc,
97101 depending on what information the provider returns.
@@ -134,6 +138,7 @@ def update(
134138 "employment_status" : employment_status ,
135139 "end_date" : end_date ,
136140 "first_name" : first_name ,
141+ "flsa_status" : flsa_status ,
137142 "income" : income ,
138143 "income_history" : income_history ,
139144 "is_active" : is_active ,
@@ -189,6 +194,7 @@ async def update(
189194 | Omit = omit ,
190195 end_date : Optional [str ] | Omit = omit ,
191196 first_name : Optional [str ] | Omit = omit ,
197+ flsa_status : Optional [Literal ["exempt" , "non_exempt" , "unknown" ]] | Omit = omit ,
192198 income : Optional [IncomeParam ] | Omit = omit ,
193199 income_history : Optional [Iterable [Optional [IncomeParam ]]] | Omit = omit ,
194200 is_active : Optional [bool ] | Omit = omit ,
@@ -225,6 +231,9 @@ async def update(
225231
226232 first_name: The legal first name of the individual.
227233
234+ flsa_status: The FLSA status of the individual. Available options: `exempt`, `non_exempt`,
235+ `unknown`.
236+
228237 income: The employee's income as reported by the provider. This may not always be
229238 annualized income, but may be in units of bi-weekly, semi-monthly, daily, etc,
230239 depending on what information the provider returns.
@@ -267,6 +276,7 @@ async def update(
267276 "employment_status" : employment_status ,
268277 "end_date" : end_date ,
269278 "first_name" : first_name ,
279+ "flsa_status" : flsa_status ,
270280 "income" : income ,
271281 "income_history" : income_history ,
272282 "is_active" : is_active ,
0 commit comments