From 81d12832fab145738ab35cd295037bd9d8836551 Mon Sep 17 00:00:00 2001 From: jchen293 Date: Thu, 4 Apr 2024 12:48:10 -0400 Subject: [PATCH] remove TODO comment --- insurance.go | 1 - 1 file changed, 1 deletion(-) diff --git a/insurance.go b/insurance.go index 459d640..ba40c93 100644 --- a/insurance.go +++ b/insurance.go @@ -129,7 +129,6 @@ func (c *Client) RefundInsurance(insuranceID string) (out *Insurance, err error) // RefundInsuranceWithContext performs the same operation as RefundInsurance, but // allows specifying a context that can interrupt the request. func (c *Client) RefundInsuranceWithContext(ctx context.Context, insuranceID string) (out *Insurance, err error) { - // TODO: remove beta when endpoint is in GA. err = c.post(ctx, "insurances/"+insuranceID+"/refund", nil, &out) return }