1
0
mirror of https://github.com/go-acme/lego.git synced 2024-12-17 23:23:35 +02:00
lego/providers/dns/netlify/internal/model.go
2020-05-08 12:26:44 +02:00

11 lines
291 B
Go

package internal
// DNSRecord DNS record representation.
type DNSRecord struct {
ID string `json:"id,omitempty"`
Hostname string `json:"hostname,omitempty"`
TTL int `json:"ttl,omitempty"`
Type string `json:"type,omitempty"`
Value string `json:"value,omitempty"`
}