Skip to content

Commit

Permalink
Update Copay type in Eligibility Full Report
Browse files Browse the repository at this point in the history
  • Loading branch information
elliehastings committed Dec 19, 2024
1 parent 5682c98 commit ef2de41
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions insurance_eligibility.go
Original file line number Diff line number Diff line change
Expand Up @@ -142,11 +142,11 @@ type IEFRPlanDetailsProvider struct {
}

type IEFRBenefits struct {
Copay []any `json:"copay"`
Coinsurance []any `json:"coinsurance"`
Deductible []any `json:"deductible"`
OutOfPocket []any `json:"out_of_pocket"`
Limitations []any `json:"limitations"`
Copay []map[string]any `json:"copay"`
Coinsurance []any `json:"coinsurance"`
Deductible []any `json:"deductible"`
OutOfPocket []any `json:"out_of_pocket"`
Limitations []any `json:"limitations"`
}

func (s *InsuranceEligibilityService) GetFullReport(ctx context.Context, patientInsuranceID int64) (*InsuranceEligibilityFullReport, *http.Response, error) {
Expand Down

0 comments on commit ef2de41

Please sign in to comment.