We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 770668e commit a467673Copy full SHA for a467673
dns.go
@@ -16,7 +16,7 @@ type DNSRecord struct {
16
Name string `json:"name,omitempty"`
17
Content string `json:"content,omitempty"`
18
Proxiable bool `json:"proxiable,omitempty"`
19
- Proxied bool `json:"proxied,omitempty"`
+ Proxied bool `json:"proxied"`
20
TTL int `json:"ttl,omitempty"`
21
Locked bool `json:"locked,omitempty"`
22
ZoneID string `json:"zone_id,omitempty"`
@@ -25,7 +25,7 @@ type DNSRecord struct {
25
ModifiedOn time.Time `json:"modified_on,omitempty"`
26
Data interface{} `json:"data,omitempty"` // data returned by: SRV, LOC
27
Meta interface{} `json:"meta,omitempty"`
28
- Priority int `json:"priority,omitempty"`
+ Priority int `json:"priority"`
29
}
30
31
// DNSRecordResponse represents the response from the DNS endpoint.
0 commit comments