From f5daa35f7d3c0b583de6c954e5b5be3f40b8df99 Mon Sep 17 00:00:00 2001
From: JP Schoombee <jp.schoombee@gmail.com>
Date: Thu, 17 Aug 2023 17:54:01 +0200
Subject: [PATCH] fix: struct tags

---
 internal/wiz/structs.go | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/internal/wiz/structs.go b/internal/wiz/structs.go
index 824358a..eee05d0 100644
--- a/internal/wiz/structs.go
+++ b/internal/wiz/structs.go
@@ -607,7 +607,7 @@ type ConnectorConfigGCP struct {
 	ClientEmail                  string                      `json:"client_email"`
 	ClientID                     string                      `json:"client_id"`
 	ClientX509CertURL            string                      `json:"client_x509_cert_url"`
-	DelegateUser                 string                      `json:"delegate_user"`
+	DelegateUser                 string                      `json:"delegateUser"`
 	DiskAnalyzerInFlightDisabled bool                        `json:"diskAnalyzerInFlightDisabled"`
 	ExcludedFolders              []string                    `json:"excludedFolders"`
 	ExcludedProjects             []string                    `json:"excludedProjects"`
@@ -630,7 +630,7 @@ type ConnectorConfigGCPAuditLogs struct {
 
 // ConnectorConfigGCPPubSub struct -- updates
 type ConnectorConfigGCPPubSub struct {
-	SubscriptionID string `json:"subscriptionId"`
+	SubscriptionID string `json:"subscriptionID"`
 	TopicName      string `json:"topicName"`
 }