From 4a0b68ab4e405800b3044c3b8fdc03a6a98bd7b9 Mon Sep 17 00:00:00 2001 From: Piyush Harsh Date: Wed, 6 Nov 2019 16:09:34 +0100 Subject: [PATCH] added belongsTo field to product --- types.go | 1 + 1 file changed, 1 insertion(+) diff --git a/types.go b/types.go index 11fd848..bd0fd21 100644 --- a/types.go +++ b/types.go @@ -11,6 +11,7 @@ type Product struct { ProductId string `json:"productId"` ResourceId string `json:"resourceId"` CustomerId string `json:"customerId"` + BelongsTo string `json:"belongsTo"` Name string `json:"name"` Type string `json:"type"` Discount string `json:"discount"`