@@ -47,7 +47,7 @@ def create(
47
47
* ,
48
48
provider_id : str ,
49
49
authentication_type : Literal ["credential" , "api_token" , "oauth" , "assisted" ] | NotGiven = NOT_GIVEN ,
50
- employer_size : int | NotGiven = NOT_GIVEN ,
50
+ employee_size : int | NotGiven = NOT_GIVEN ,
51
51
products : List [str ] | NotGiven = NOT_GIVEN ,
52
52
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
53
53
# The extra values given here take precedence over values defined on the client or passed to this method.
@@ -60,7 +60,7 @@ def create(
60
60
Create a new connection (new company/provider pair) with a new account
61
61
62
62
Args:
63
- employer_size : Optional: the size of the employer to be created with this connection. Defaults
63
+ employee_size : Optional: the size of the employer to be created with this connection. Defaults
64
64
to 20
65
65
66
66
extra_headers: Send extra headers
@@ -77,7 +77,7 @@ def create(
77
77
{
78
78
"provider_id" : provider_id ,
79
79
"authentication_type" : authentication_type ,
80
- "employer_size " : employer_size ,
80
+ "employee_size " : employee_size ,
81
81
"products" : products ,
82
82
},
83
83
connection_create_params .ConnectionCreateParams ,
@@ -107,7 +107,7 @@ async def create(
107
107
* ,
108
108
provider_id : str ,
109
109
authentication_type : Literal ["credential" , "api_token" , "oauth" , "assisted" ] | NotGiven = NOT_GIVEN ,
110
- employer_size : int | NotGiven = NOT_GIVEN ,
110
+ employee_size : int | NotGiven = NOT_GIVEN ,
111
111
products : List [str ] | NotGiven = NOT_GIVEN ,
112
112
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
113
113
# The extra values given here take precedence over values defined on the client or passed to this method.
@@ -120,7 +120,7 @@ async def create(
120
120
Create a new connection (new company/provider pair) with a new account
121
121
122
122
Args:
123
- employer_size : Optional: the size of the employer to be created with this connection. Defaults
123
+ employee_size : Optional: the size of the employer to be created with this connection. Defaults
124
124
to 20
125
125
126
126
extra_headers: Send extra headers
@@ -137,7 +137,7 @@ async def create(
137
137
{
138
138
"provider_id" : provider_id ,
139
139
"authentication_type" : authentication_type ,
140
- "employer_size " : employer_size ,
140
+ "employee_size " : employee_size ,
141
141
"products" : products ,
142
142
},
143
143
connection_create_params .ConnectionCreateParams ,
0 commit comments