2
2
3
3
from __future__ import annotations
4
4
5
- from typing import List , Optional
5
+ from typing import Iterable , Optional
6
6
from typing_extensions import Literal
7
7
8
8
import httpx
@@ -36,7 +36,7 @@ def update(
36
36
individual_id : str ,
37
37
* ,
38
38
dob : Optional [str ] | NotGiven = NOT_GIVEN ,
39
- emails : Optional [List [individual_update_params .Email ]] | NotGiven = NOT_GIVEN ,
39
+ emails : Optional [Iterable [individual_update_params .Email ]] | NotGiven = NOT_GIVEN ,
40
40
encrypted_ssn : Optional [str ] | NotGiven = NOT_GIVEN ,
41
41
ethnicity : Optional [
42
42
Literal [
@@ -55,7 +55,7 @@ def update(
55
55
gender : Optional [Literal ["female" , "male" , "other" , "decline_to_specify" ]] | NotGiven = NOT_GIVEN ,
56
56
last_name : Optional [str ] | NotGiven = NOT_GIVEN ,
57
57
middle_name : Optional [str ] | NotGiven = NOT_GIVEN ,
58
- phone_numbers : Optional [List [Optional [individual_update_params .PhoneNumber ]]] | NotGiven = NOT_GIVEN ,
58
+ phone_numbers : Optional [Iterable [Optional [individual_update_params .PhoneNumber ]]] | NotGiven = NOT_GIVEN ,
59
59
preferred_name : Optional [str ] | NotGiven = NOT_GIVEN ,
60
60
residence : Optional [LocationParam ] | NotGiven = NOT_GIVEN ,
61
61
ssn : Optional [str ] | NotGiven = NOT_GIVEN ,
@@ -142,7 +142,7 @@ async def update(
142
142
individual_id : str ,
143
143
* ,
144
144
dob : Optional [str ] | NotGiven = NOT_GIVEN ,
145
- emails : Optional [List [individual_update_params .Email ]] | NotGiven = NOT_GIVEN ,
145
+ emails : Optional [Iterable [individual_update_params .Email ]] | NotGiven = NOT_GIVEN ,
146
146
encrypted_ssn : Optional [str ] | NotGiven = NOT_GIVEN ,
147
147
ethnicity : Optional [
148
148
Literal [
@@ -161,7 +161,7 @@ async def update(
161
161
gender : Optional [Literal ["female" , "male" , "other" , "decline_to_specify" ]] | NotGiven = NOT_GIVEN ,
162
162
last_name : Optional [str ] | NotGiven = NOT_GIVEN ,
163
163
middle_name : Optional [str ] | NotGiven = NOT_GIVEN ,
164
- phone_numbers : Optional [List [Optional [individual_update_params .PhoneNumber ]]] | NotGiven = NOT_GIVEN ,
164
+ phone_numbers : Optional [Iterable [Optional [individual_update_params .PhoneNumber ]]] | NotGiven = NOT_GIVEN ,
165
165
preferred_name : Optional [str ] | NotGiven = NOT_GIVEN ,
166
166
residence : Optional [LocationParam ] | NotGiven = NOT_GIVEN ,
167
167
ssn : Optional [str ] | NotGiven = NOT_GIVEN ,
0 commit comments