@@ -60,6 +60,7 @@ def with_streaming_response(self) -> BenefitsWithStreamingResponse:
6060 def create (
6161 self ,
6262 * ,
63+ company_contribution : Optional [benefit_create_params .CompanyContribution ] | NotGiven = NOT_GIVEN ,
6364 description : str | NotGiven = NOT_GIVEN ,
6465 frequency : Optional [BenefitFrequency ] | NotGiven = NOT_GIVEN ,
6566 type : Optional [BenefitType ] | NotGiven = NOT_GIVEN ,
@@ -76,6 +77,8 @@ def create(
7677 `/providers` endpoint to view available types for each provider.
7778
7879 Args:
80+ company_contribution: The company match for this benefit.
81+
7982 description: Name of the benefit as it appears in the provider and pay statements. Recommend
8083 limiting this to <30 characters due to limitations in specific providers (e.g.
8184 Justworks).
@@ -96,6 +99,7 @@ def create(
9699 "/employer/benefits" ,
97100 body = maybe_transform (
98101 {
102+ "company_contribution" : company_contribution ,
99103 "description" : description ,
100104 "frequency" : frequency ,
101105 "type" : type ,
@@ -246,6 +250,7 @@ def with_streaming_response(self) -> AsyncBenefitsWithStreamingResponse:
246250 async def create (
247251 self ,
248252 * ,
253+ company_contribution : Optional [benefit_create_params .CompanyContribution ] | NotGiven = NOT_GIVEN ,
249254 description : str | NotGiven = NOT_GIVEN ,
250255 frequency : Optional [BenefitFrequency ] | NotGiven = NOT_GIVEN ,
251256 type : Optional [BenefitType ] | NotGiven = NOT_GIVEN ,
@@ -262,6 +267,8 @@ async def create(
262267 `/providers` endpoint to view available types for each provider.
263268
264269 Args:
270+ company_contribution: The company match for this benefit.
271+
265272 description: Name of the benefit as it appears in the provider and pay statements. Recommend
266273 limiting this to <30 characters due to limitations in specific providers (e.g.
267274 Justworks).
@@ -282,6 +289,7 @@ async def create(
282289 "/employer/benefits" ,
283290 body = await async_maybe_transform (
284291 {
292+ "company_contribution" : company_contribution ,
285293 "description" : description ,
286294 "frequency" : frequency ,
287295 "type" : type ,
0 commit comments