File tree Expand file tree Collapse file tree 4 files changed +14
-6
lines changed Expand file tree Collapse file tree 4 files changed +14
-6
lines changed Original file line number Diff line number Diff line change 11configured_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(
6868        `/providers` endpoint to view available types for each provider. 
6969
7070        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+ 
7175          type: Type of benefit. 
7276
7377          extra_headers: Send extra headers 
@@ -237,6 +241,10 @@ async def create(
237241        `/providers` endpoint to view available types for each provider. 
238242
239243        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+ 
240248          type: Type of benefit. 
241249
242250          extra_headers: Send extra headers 
Original file line number Diff line number Diff line change 1313
1414class  BenefitCreateParams (TypedDict , total = False ):
1515    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+     """ 
1621
1722    frequency : Optional [BenefitFrequency ]
1823
Original file line number Diff line number Diff line change 55from  ..._models  import  BaseModel 
66from  .benefit_type  import  BenefitType 
77from  .benefit_frequency  import  BenefitFrequency 
8- from  .benefit_contribution  import  BenefitContribution 
98
109__all__  =  ["CompanyBenefit" ]
1110
1211
1312class  CompanyBenefit (BaseModel ):
1413    benefit_id : str 
1514
16-     company_contribution : Optional [BenefitContribution ] =  None 
17- 
1815    description : Optional [str ] =  None 
1916
20-     employee_deduction : Optional [BenefitContribution ] =  None 
21- 
2217    frequency : Optional [BenefitFrequency ] =  None 
2318
2419    type : Optional [BenefitType ] =  None 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments