From cac3a8d8997a674ac0ac3d9d7f696550f0b36466 Mon Sep 17 00:00:00 2001 From: imikod Date: Sun, 25 Mar 2018 21:27:16 +0300 Subject: [PATCH] add id field in CreateAgreementResp struct --- billing.go | 1 + 1 file changed, 1 insertion(+) diff --git a/billing.go b/billing.go index 292d56c..2ac4da1 100644 --- a/billing.go +++ b/billing.go @@ -22,6 +22,7 @@ type ( // CreateAgreementResp struct CreateAgreementResp struct { + ID string `json:"id,omitempty"` Name string `json:"name,omitempty"` Description string `json:"description,omitempty"` Plan BillingPlan `json:"plan,omitempty"`