From e2a8da45dadf1b28e5d8fd0ab903dc0d9a3ca0e7 Mon Sep 17 00:00:00 2001 From: fboltz Date: Thu, 27 May 2021 11:24:56 +0200 Subject: [PATCH] Replace string pointer by string value --- provider/godaddy/client.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/provider/godaddy/client.go b/provider/godaddy/client.go index 335994129..3631387b1 100644 --- a/provider/godaddy/client.go +++ b/provider/godaddy/client.go @@ -79,10 +79,10 @@ type Client struct { // GDErrorField describe the error reason type GDErrorField struct { - Code *string `json:"code,omitempty"` - Message *string `json:"message,omitempty"` - Path *string `json:"path,omitempty"` - PathRelated *string `json:"pathRelated,omitempty"` + Code string `json:"code,omitempty"` + Message string `json:"message,omitempty"` + Path string `json:"path,omitempty"` + PathRelated string `json:"pathRelated,omitempty"` } // GDErrorResponse is the body response when an API call fails