From 9a8ef3a0edfd9e4bfda2f7772fea1b602521d23f Mon Sep 17 00:00:00 2001 From: Piyush Harsh Date: Mon, 28 Oct 2019 15:47:23 +0100 Subject: [PATCH] updated product struct definition to include billable field --- .gitignore | 1 + types.go | 1 + 2 files changed, 2 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1c2d52b --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.idea/* diff --git a/types.go b/types.go index 7dae0bb..1d9d7c4 100644 --- a/types.go +++ b/types.go @@ -14,6 +14,7 @@ type Product struct { Type string `json:"type"` Discount string `json:"discount"` CancelDate string `json:"cancelDate"` + Billable string `json:"billable"` ApiLink string `json:"apiLink"` }