File tree 4 files changed +14
-6
lines changed
4 files changed +14
-6
lines changed Original file line number Diff line number Diff line change 1
1
configured_endpoints : 37
2
- openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/finch-d354479cc46ae377d1b32b8896fd1ffdf4abb8a64e1ef49159fa20528e9e1288 .yml
2
+ openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/finch-f07d08f8590304c1e41dce8d97b2a734c04e9f6736ca1266f3669606682439cf .yml
Original file line number Diff line number Diff line change @@ -68,6 +68,10 @@ def create(
68
68
`/providers` endpoint to view available types for each provider.
69
69
70
70
Args:
71
+ description: Name of the benefit as it appears in the provider and pay statements. Recommend
72
+ limiting this to <30 characters due to limitations in specific providers (e.g.
73
+ Justworks).
74
+
71
75
type: Type of benefit.
72
76
73
77
extra_headers: Send extra headers
@@ -237,6 +241,10 @@ async def create(
237
241
`/providers` endpoint to view available types for each provider.
238
242
239
243
Args:
244
+ description: Name of the benefit as it appears in the provider and pay statements. Recommend
245
+ limiting this to <30 characters due to limitations in specific providers (e.g.
246
+ Justworks).
247
+
240
248
type: Type of benefit.
241
249
242
250
extra_headers: Send extra headers
Original file line number Diff line number Diff line change 13
13
14
14
class BenefitCreateParams (TypedDict , total = False ):
15
15
description : str
16
+ """Name of the benefit as it appears in the provider and pay statements.
17
+
18
+ Recommend limiting this to <30 characters due to limitations in specific
19
+ providers (e.g. Justworks).
20
+ """
16
21
17
22
frequency : Optional [BenefitFrequency ]
18
23
Original file line number Diff line number Diff line change 5
5
from ..._models import BaseModel
6
6
from .benefit_type import BenefitType
7
7
from .benefit_frequency import BenefitFrequency
8
- from .benefit_contribution import BenefitContribution
9
8
10
9
__all__ = ["CompanyBenefit" ]
11
10
12
11
13
12
class CompanyBenefit (BaseModel ):
14
13
benefit_id : str
15
14
16
- company_contribution : Optional [BenefitContribution ] = None
17
-
18
15
description : Optional [str ] = None
19
16
20
- employee_deduction : Optional [BenefitContribution ] = None
21
-
22
17
frequency : Optional [BenefitFrequency ] = None
23
18
24
19
type : Optional [BenefitType ] = None
You can’t perform that action at this time.
0 commit comments