From ccdc13356cdf9e602d27644181e35133c4aca9a1 Mon Sep 17 00:00:00 2001 From: Albin Antony Date: Thu, 2 Nov 2023 13:38:31 +0530 Subject: [PATCH] Fix #439 Change thirdPartyDataSharing data type to boolean --- internal/policy/policy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/policy/policy.go b/internal/policy/policy.go index f444752..3e05824 100644 --- a/internal/policy/policy.go +++ b/internal/policy/policy.go @@ -24,7 +24,7 @@ type Policy struct { DataRetentionPeriodDays int `json:"dataRetentionPeriodDays"` GeographicRestriction string `json:"geographicRestriction"` StorageLocation string `json:"storageLocation"` - ThirdPartyDataSharing string `json:"thirdPartyDataSharing"` + ThirdPartyDataSharing bool `json:"thirdPartyDataSharing"` OrganisationId string `json:"-"` IsDeleted bool `json:"-"` }