From ccc897e89109705c09d28ffcb4409ebf50ee473d Mon Sep 17 00:00:00 2001 From: imikod Date: Sun, 25 Mar 2018 17:13:46 +0300 Subject: [PATCH] add DeletePlan() --- billing_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/billing_test.go b/billing_test.go index ecc9dde..b5fcb98 100644 --- a/billing_test.go +++ b/billing_test.go @@ -105,4 +105,6 @@ func BillingExample() { } resp, err := c.CreateBillingAgreement(agreement) fmt.Println(err, resp) + err = c.DeletePlan(planResp.ID) + fmt.Println(err) }