mirror of
https://github.com/kubernetes-sigs/external-dns.git
synced 2026-05-05 14:46:10 +02:00
Replace string pointer by string value
This commit is contained in:
parent
8763a504b0
commit
e2a8da45da
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user